如何使用JSON中的数组访问对象

时间:2017-08-23 07:46:38

标签: javascript json

这是我的代码 slot.interment.strInteITypeID.prices

输出

[
  { 
    "strPriceID": 1, 
    "decPriceAmount": "15000.00", 
    "created_at": "2017-08-19 02:28:04",
    "updated_at": "2017-08-19 02:28:04" 
  }
]

如何访问decPriceAmount ???

1 个答案:

答案 0 :(得分:3)

你有一个阵列。您需要通过索引([0] - 第一项,因为您只有一个项目)访问当前项目,然后通过.点语法或[]语法访问该对象的属性

const data = [ 
{ 
   "strPriceID": 1, 
   "decPriceAmount": "15000.00", 
   "created_at": "2017-08-19 02:28:04",
   "updated_at": "2017-08-19 02:28:04" 
}];

console.log(data[0].decPriceAmount);