我试图在https://www.chargebee.com/checkout-portal-docs/drop-in-tutorial.html#implementation之后将drop-in checkout添加到react SPA中。我在渲染视图的其余部分之后动态添加chargebee.js
,然后调用registerAgain()
。
componentDidMount() {
const el = document.createElement('script');
el.onload = () => {
window.Chargebee.registerAgain();
// this.setState({ chargebeeReady: true });
};
el.setAttribute('data-cb-site', 'derp-test');
el.setAttribute('src', 'https://js.chargebee.com/v2/chargebee.js');
document.body.appendChild(el);
}
render() {
// [...]
<a
href="javascript:void(0)"
data-cb-type="checkout"
data-cb-plan-id="asdf-test"
>
Subscribe
</a>
// [...]
}
当点击subscribe
时,我得到一个错误:
Uncaught TypeError: Cannot read property 'getCart' of null
at t.a (event-binding.ts:24)
at Function.value (chargebee.ts:46)
at HTMLScriptElement.el.onload (Subscribe.js:23)
2条答案
按热度按时间hs1ihplo1#
当DOMContentLoaded事件被触发时,Chargebee示例将被创建。由于您正在异步加载它,因此示例不会被创建。因此可以使用Chargebee.init()创建示例。
oalqel3c2#