这是我的代码 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 ???
答案 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);