我想从Javascript“数组”中获取变量“ priceWithVatMin”和“ priceWithVatMax”
<script>
dataLayer = [];
dataLayer.push({'shoptet' : {
"pageType": "productDetail",
"product": {
"id": 2148,
"name": "iPhone 7 Plus 32GB Black",
"currency": "CZK",
"priceWithVatMin": 12899,
"priceWithVatMax": 13599
}
我想要一些类似在控制台中写入此变量的信息,例如-> console.log(?)
非常感谢:-)
答案 0 :(得分:-1)
dataLayer.forEach(item => {
console.log(item.shoptet.product.priceWithVatMin)
})
其他答案仅访问一项。这是如果您要获取数组中的每个项目(假设您添加更多)。