我正在使用 Google Tag Manager 来交付 Facebook Pixel。
然后,我使用这样的代码触发事件
<body>
...
<script>
fbq('track', 'ViewContent', {
content_type: 'product',
content_ids: ['1234'],
content_name: 'ABC Leather Sandal',
content_category: 'Shoes',
value: 0.50,
currency: 'USD'
});
</script>
</body>
但是当代码被执行时,我得到了一个错误,因为 Facebook Pixel 是异步加载的并且 fbq 还不可用。
未捕获的 ReferenceError:未定义 fbq
我应该怎么办?