我可以将tastypie modelresource字段设为只读吗?

问题描述 投票:10回答:3

我有一个Tastypie ModelResource,它从常规Django模型中获取其字段。我想在Tastypie资源上使某些字段只读,即使它们在底层模型中是可写的。这有可能以简单的方式完成吗?

我试过以下无济于事:

def __init__(self, **kwargs):
    super(ModelResource, self).__init__(**kwargs)
    for f in getattr(self.Meta, 'read_onlys', []):
        self.fields[f].read_only = True
tastypie
3个回答
4
投票

通常我会在水合物/脱水过程中做那种事情。

可能有其他方式,

def hydrate(self, bundle):
    if bundle.obj.pk:
        bundle.data['somefield'] = bundle.obj.somefield
    else:
        bundle.data.pop('somefield', None)  # no KeyError if 'somefield' missing

    return super(MyResource, self).hydrate(bundle)

1
投票

不确定你是否还需要这个,但这里是与readonly字段相关的官方文档的链接。

例:

class ResourceA(ModelResource):
    read_only_field = fields.DateTimeField('attribute', readonly=True)

希望这有助于某人。

谢谢


0
投票

问题是BaseModelForm overwrites self.instance when doing validation

无论Tastypie场是否设置了readonly,该事件都会发生(onfly影响Tastypie自己的hydrate,没有别的)。

所以我最后写了这个:https://gist.github.com/thnee/8522224

© www.soinside.com 2019 - 2024. All rights reserved.