例如:
{
"123": [
...stuff
]
}
如何在jquery中调用“ 123”而不返回错误?
我尝试过:
$.getJSON('insert-url-here').then(function (data) {
console.log(data.123.length)
}
但它不起作用。
答案 0 :(得分:0)
使用方括号表示法:
const data = {
"123": [1, 2, 3]
}
console.log(data[123].length);
或者因为从技术上讲它是字符串:
const data = {
"123": [1, 2, 3]
}
console.log(data["123"].length);