标签:文件 注释 json 编译 span data mil comm txt
添加注释//或者/**/在JSON文件中是不允许的
JSON有两种数据结构:
而在JSON的文档中说明只要是不符合上面两种结构的都不被支持,并提示错误(http://www.ietf.org/rfc/rfc7159.txt)
如果确实需要在.json文件中使用注释有两种方式:
{
‘_comment‘:‘this is commets‘,
‘jsondata‘:{
Key1:value1,
Key2:value2,
……
}
}
通过使用JSON.minify(test.json)可以删除test.json文件中的注释及空格,从而使带有注释的.json文件通过编译
标签:文件 注释 json 编译 span data mil comm txt
原文地址:http://www.cnblogs.com/Dream-Seeker/p/6413605.html