Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从资源full_dehydrate方法返回的数据中排除我的资源字段之一。但是,我不想完全使用 资源从资源中排除该字段excludes,因为我想允许通过 API 更新该字段。
full_dehydrate
excludes
我尝试将字段的use_in属性设置为空白字符串,但什么也没做,到目前为止我的谷歌搜索都是空的。这可能吗?
use_in
在您的 full_dehydrate 方法中,您可以执行以下操作:
if 'field' in bundle.data.keys() del bundle.data['field'] return bundle