我正在查看 gruntjs,并查看了一些用于配置 Grunt 任务的 JSON 示例。
以下是 JSON 的示例:
grunt.initConfig({
concat: {
foo: {
// concat task "foo" target options and files go here.
},
bar: {
// concat task "bar" target options and files go here.
},
},
uglify: {
bar: {
// uglify task "bar" target options and files go here.
},
},
});
如您所见,每个条形属性后都有一个“额外”逗号。我在 Chrome 中尝试了这种表示法,它是有效的。虽然它是有效的,但我不会使用这种表示法,但人们为什么要使用它呢?