1 Star 0 Fork 0

AshCode/onerway-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
GooglePay.html 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
AshCode 提交于 2024-09-06 17:25 . init
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title></title>
<script src="onerway.js"></script>
</head>
<body>
<div id='pacypay_checkout'></div>
</body>
<script type="text/javascript">
const options = {
container: 'pacypay_checkout', // 按钮嵌入的容器
locale: "zh", // 支持语言
environment: 'sandbox', // sandbox、production
mode: 'GooglePay', // GooglePay、ApplePay
config: {
googlePayButtonType: 'buy', // 'book' | 'buy' | 'checkout' | 'donate' | 'order' | 'pay' | 'plain' | 'subscribe'
googlePayButtonColor: 'black', // 'black' | 'white'
googlePayEnvironment: 'TEST', // TEST PRODUCTION
buttonWidth: '100px', // 按钮宽度
buttonHeight: '40px', // 按钮高度
buttonRadius: '4px', // 按钮圆角边框
},
onPaymentCompleted: function (res) { // 成功支付后回调方法
const txtInfo = res.data; // 返回交易结果详情
const respCode = res.respCode; // 响应码
const respMsg = res.respMsg; // 响应信息
if(respCode === '20000') { // respCode 为 20000 表示交易正常
switch (txtInfo.status) { // 交易状态判断
case 'S': // status 为 'S' 表示成功
// 支付最终状态以异步通知结果为准
break
case 'F': // status 为 'F' 表示失败
break;
}
} else {
// 交易失败
}
},
onError: function (err) {
//支付异常回调方法
console.log('res', err);
}
}
const transactionId = '1831939921066463232'; //当前交易ID
const pacypay = new Pacypay(transactionId, options)
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ashincode/onerway-api.git
[email protected]:ashincode/onerway-api.git
ashincode
onerway-api
onerway-api
main

搜索帮助