自定义宣讲 json 回复
Customize katharsis json response
我正在使用katharsis,我想要自定义响应,以下是katharsis响应。
{
"type": "table-name",
"id": "A",
"attributes": {
"description": "AAA"
},
"relationships": {
},
"links": {
"self": "http://localhost/table-name/A"
}
}
如何删除链接下的“"self":“http://localhost/table-name/A”?
在 Katharsis Dto 中添加 String 字段,为该字段赋空值。
然后添加注释@JsonApiLinksInformation。 Katharsis 会将 ""self": "http://localhost/table-name/A"" 替换为空字符串
我正在使用katharsis,我想要自定义响应,以下是katharsis响应。
{
"type": "table-name",
"id": "A",
"attributes": {
"description": "AAA"
},
"relationships": {
},
"links": {
"self": "http://localhost/table-name/A"
}
}
如何删除链接下的“"self":“http://localhost/table-name/A”?
在 Katharsis Dto 中添加 String 字段,为该字段赋空值。 然后添加注释@JsonApiLinksInformation。 Katharsis 会将 ""self": "http://localhost/table-name/A"" 替换为空字符串