当我尝试将连字符添加到 json 创建时,它显示错误为;
SyntaxError: missing : after property id
student-ids : [{
我的 JSON 是这样的:
var testJson = {
student-ids : [{
student-id : "123"},{
student-id : "21321"},{
student-id : "123"},{
student-id : "21321"
}]
};
console.log(testJson)