SyntaxError: Unexpected number in JSON at position 1
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
SyntaxError: Unexpected number in JSON at position 1
javascript JSON序列表,key 是int类型的时候,出错
处理方法,使用正则表达式,将int类型的key 替换成字符串
var a ="{2:\"全天\",7:\"测试\",8:\"1天\",9:12,10:14}";
var x = a.replace(/(\d+):/g,"\"$1\":");
var r = JSON.parse(x);
console.log(r["8"])
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献9条内容
所有评论(0)