如果文件很长,赶脚还是有添加注释的必要啊
可是添加了几个字,运行就报错鸟:( 肿么办?
37 回复
不能加在"dependencies"里,但是可以加为package.json
的最顶层项:
{
"//": "This is comment 1",
"//": "This is comment 2"
}
或者
{
"//": [ "Line 1 of Comments", "Line 2 of Comments" ]
}
@kingapple 你这种需求是需要一个js 对象…而不是json…
var xx = {
xx : 'xx' //一波注释
}
//序列化这个js 对象...成json..
console.log(JSON.stringify(xx))