如何使用Vue.js类组件设置PayPal智能按钮



我正在尝试将PayPal按钮添加到现有的结账页面。然而,我遇到了很多麻烦,因为我们的项目使用Vue.js类组件,而我遇到的例子没有(PayPal官方文档不使用类组件:https://developer.paypal.com/docs/business/checkout/configure-payments/single-page-app/)。

我遇到了使用mounted()钩子将PayPal SDK脚本注入DOM的变通方法,并且我成功地使按钮出现,但有一个问题是,我无法使支付细节动态化(订单信息,如总金额、商品描述等,都存储在Vue组件的状态中,我还没有找到将该状态传递给DOM中的静态JS脚本的方法(。

我目前正在尝试调整官方的PayPal文档以使用类组件,我的代码如下(去掉了与PayPal无关的部分(:

Index.html:

<!DOCTYPE html>
<html class="no-js" lang="en" dir="ltr">
<head>
<script defer src="https://www.paypal.com/sdk/js?client-id=abc123&disable-funding=credit,card"></script>
</head>
<body>
<div id="app">
<!-- The shop component is put inside here -->
</div>
</body>
</html>

shop.vue:

<template>
<paypal-buttons :on-approve="onApprove" :create-order="createOrder" />
</template>
<script lang="ts" src="./shop.component.ts"></script>

shop.component.ts:

const PayPalButton = paypal.Buttons.driver("vue", window.Vue);
@Component({
components: {
PayPalButton,
},
})
export default class Shop extends Vue {
public total = '10.0'; // Will be dynamic
public mounted(): void {
...
}
public createOrder(data, actions) {
return actions.order.create({
purchase_units : [{
amount: {
value: total
}
}]
});
}
public onApprove(data, actions) {
return actions.order.capture().then(function (details) {
console.log(details)
})
}
}

这段代码将成功构建,但由于出现错误,我无法实际打开页面。在浏览器控制台中,我看到以下错误:

TypeError:无法读取未定义的属性"component">

经过进一步调试,我发现paypal.Buttons.driver("vue", window.Vue);行导致了错误,这是因为paypal未定义。我相当确定index.html中的PayPal脚本加载正确,我也不认为这是由于缺少npm包或导入。我在网上找到的为数不多的资源之一是:Vue PayPal与Vue头的实现,PayPal未定义

不幸的是,这个链接的解决方案使用了mounted()挂钩,这是我以前尝试过的,并且不能解决提供我想要的动态总计的问题。

有人有使用PayPal SDK的经验吗;Vue.js类组件?如有任何帮助,我们将不胜感激!

经过更多的测试,我得出了这样的结论:很明显,即使使用mounted()钩子将SDK脚本注入DOM,也可以将动态订单发送到PayPal。事实证明,当我第一次尝试这样做时,我对Vue类组件的理解有缺陷,因此错误地引用了组件状态。

在我的最后一个代码中,我从index.html中取出了PayPal SDK<script>标签

shop.vue:

<template>
<div id="paypal-button"></div>
</template>
<script lang="ts" src="./shop.component.ts"></script>

shop.component.ts:

export default class Shop extends Vue {
public total = '10.0'; // Will be dynamic
public mounted(): void {
const script = document.createElement('script');
const clientId = 'abc123';
script.src = `https://www.paypal.com/sdk/js?client-id=${clientId}&disable-funding=credit,card`;
script.addEventListener('load', this.paypalSetLoaded);
document.body.appendChild(script);
}
public paypalSetLoaded() {
window.paypal
.Buttons({
style: {
color: 'blue',
shape: 'pill',
},
createOrder: this.paypalCreateOrder,
onApprove: this.paypalOnApprove,
})
.render('#paypal-button');
}
public paypalCreateOrder(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
currency_code: 'USD',
value: this.total,
}
}],
});
}
public paypalOnApprove(data, actions) {
return actions.order.capture().then(details => {
console.log(details);
});
}
}

即使total的值在程序执行过程中发生变化(由于用户交互(,也会始终向PayPal发送正确金额的订单。

我不确定这是否是最佳实践,但该代码有效且高效;基于我所能预见的可扩展性。希望这能帮助其他遇到类似问题的人😎

相关内容

  • 没有找到相关文章

最新更新