gpt4 book ai didi

javascript - Facebook 像素购买 body 事件

转载 作者:行者123 更新时间:2023-12-02 21:45:20 24 4
gpt4 key购买 nike

我正在尝试进行购买 facebookEvent,它需要一个对象“Products”数组,其中包含该数组上每个产品的 id 和数量,我在这里询问的是我尝试分配循环到数组中的内容事件有效负载内的产品,但编译器提示,任何人都可以帮助如何使内容数组响应整个产品的数组吗?

  //fbp
(<any>window).fbq("track", "Purchase", {
value: this.totalPrice,
currency: "EGP",
contents: [
{
// this should be applicable for every single item on the arrayOfProducts
id: arrayOfProducts[0].id,
quantity: arrayOfProducts[0].quantity
}
],
content_type: "product"
});

最佳答案

What i mean by my questions is, how to push the whole arrayOfProducts instead of passing only the first item on the array ?

使用map

//fbp
(<any>window).fbq("track", "Purchase", {
value: this.totalPrice,
currency: "EGP",
contents: arrayOfProducts.map(function(item) {
return {
id: item.id,
quantity: item.quantity
}
}),
content_type: "product"
});

关于javascript - Facebook 像素购买 body 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60264198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com