如何在.json文件中添加注释

这个问题在这里已经有了答案:

  • 可以在JSON中使用评论吗? 42个答案

  • 不,注释不是JSON RFC 7159的一部分,但是有JSON解析器支持C ++ - 样式注释

    {
      "img":{ "width": 320, "height": 240 } //Picture details
    }
    

    请参阅JSON ++

    所以答案取决于你将如何处理你的JSON。 JavaScript-JSON解析器( JSON.parse() )不支持这一点。

    链接地址: http://www.djcxy.com/p/3387.html

    上一篇: how to add comments in.json file

    下一篇: Why is there no any method to comment in JSON