json响应结构标准

我正在尝试为我的应用程序前进的JSON响应标准做出决定。

所以我在思考一些问题

假Json {消息:“你好,这是一个响应”,行动:0或1,或“好”或“坏”,statusCode:234,}

我想知道是否已经有一个很好的标准,以及我如何保持我的标准在我的前端和后端之间同步?

有没有一个聪明的方法来做到这一点?


我正在使用类似于这样的结构:

{ status: ("ok", "error" or "redirect"), message: "some message goes here.", fields: "field selectors goes here in case some highlighting is needed", url: "url to open or redirect to if needed" }
  • status属性是下一步做什么的关键;
  • message可用于显示弹出消息或内联消息等。也可以是由'|'分隔的消息列表 性格分裂;
  • field属性用于选择(使用jQuery或其他JS库)需要操作的字段或其他对象(想想这是用于字段验证的);
  • url属性用于更改页面,打开弹出窗口或发回某些内容,具体取决于您的需要。
  • 链接地址: http://www.djcxy.com/p/48079.html

    上一篇: json standards for structure of responses

    下一篇: What is a right way for REST API response?