我有一个问题是访问具有数字名称的对象属性,下面的示例代码是Pinterest API的响应,我可以访问除图像URL之外的每个属性。由于237x对象引起错误,请提供帮助
响应输出 显示图像对象 - > 237x --->网址,宽度,高度
var pinterestitems =null ;
Comics.pinterest().success(function (response) {
$scope.pinterestitems = response.data.pins;
console.log(response.data.pins.images.237x.url); //description ,link,images.url
//console.log(response.data.pins);
我的代码在引用URL属性时引发错误 执行console.log(response.data.pins.images.237x.url) 错误信息 : Controllers.js:28 Uncaught SyntaxError:无效或意外的令牌。
错误下划线(237x)