从JavaScript数组获取变量

时间:2019-02-07 22:29:04

标签: javascript

我想从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(?) 非常感谢:-)

1 个答案:

答案 0 :(得分:-1)

dataLayer.forEach(item => {
  console.log(item.shoptet.product.priceWithVatMin)
})

其他答案仅访问一项。这是如果您要获取数组中的每个项目(假设您添加更多)。