我想__initializer__: null,__cloner__: null, __isInitialized__: true,
从我返回的 json 中删除代理字段,但我不知道。
我不想使用* @Serializer\Exclude()
,因为这些字段旁边还有更多字段。
这是一个示例 json:
emails: [
{
id: 1,
subject: "Mrs. Astrid Wuckert",
body: "Excepturi.",
sendCopy: false,
roles: [
{
__initializer__: null,
__cloner__: null,
__isInitialized__: true,
name: "ROLE_ADMIN"
},
{
name: "ROLE_RESELLER"
},
{
name: "ROLE_RETAILER"
},
{
name: "ROLE_CLUB_SHOP"
}
]
},
]
提前致谢。