我正在使用 bronto 标记管理器来跟踪购物车详细信息。
我在我的页面中包含了 Bronto Commerce JavaScript 代码段。现在我可以创建bronto.sca对象。
bronto.sca.config()和bronto.sca.id正在返回值。
但是bronto.sca.cart总是返回 null。
这是我正在使用的代码
<script type="text/javascript">
$("#Run").click(function()
{
alert('Run clicked');
debugger;
bronto.init;
var brontoCart = {
"cartPhase": "ORDER_REVIEW",
"currency": "USD",
"subtotal":990.00,
"discountAmount": 0,
"taxAmount": 110.00,
"grandTotal": 880.00,
"orderId": "1331",
"emailAddress": "Footer@qwe.vo",
"cartUrl": "http://localhost:5000/cart#view",
"lineItems": new Array()
};
bronto.sca.addToCart(brontoCart);
});
</script>
<script data-name="__br_tm" type="text/javascript">
var _bsw = _bsw || [];
_bsw.push(['_bswId', 'xxxxxxxxxxxxxx']);
(function() {
var bsw = document.createElement('script'); bsw.type ='text/javascript'; bsw.async = true;
bsw.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'js.bronto.com/c/********************/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx/s/b.min.js';
var t = document.getElementsByTagName('script')[0]; t.parentNode.insertBefore(bsw, t);
})();
另外,如何在网页中添加 bronto json?