栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Django rest framework实践记录(五)

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Django rest framework实践记录(五)

改变inline显示的数量

设置extra 就可以改变inline数量

class InlineModelAdmin(baseModelAdmin):
    """
    Options for inline editing of ``model`` instances.

    Provide ``fk_name`` to specify the attribute name of the ``ForeignKey``
    from ``model`` to its parent. This is required if ``model`` has more than
    one ``ForeignKey`` to its parent.
    """
    model = None
    fk_name = None
    formset = baseInlineFormSet
    extra = 1
    min_num = None
    max_num = None
    template = None
    verbose_name = None
    verbose_name_plural = None
    can_delete = True
    show_change_link = False
    checks_class = InlineModelAdminChecks
    classes = None
更新指定或部分数据
class AccountUserSerializer(serializers.ModelSerializer):
    class meta:
 model = AccountUser
 fields = ('name','mobile','province',)
class AccountUserSerializer(serializers.ModelSerializer):
    class meta:
 model = AccountUser
 fields = ('name','mobile','province','city','country','detail','zone','the_index')

AccountUserSerializer只能更新'name','mobile','province',即使传递了其他数据也不能更新,所以在显示的时候只会显示'name','mobile','province'。在更新和创建的时候也只会更新创建'name','mobile','province'。如果想要显示的字段和先要创建更新的字段不一样就要注意了。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/225694.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号