-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
网页支付的异步回调地址在哪里配? #3
Comments
const service = new Alipay(options)
const data = {
subject: '辣条',
out_trade_no: '1232423',
total_amount: '100'
}
const basicParams = {
return_url: 'http://xxx.com'
}
return service.createWebOrderURL(data, basicParams)
.then(result => {
assert(result.code == 0, result.message)
assert(result.message == 'success', result.message)
}) 这里的return_url就是异步回掉地址:) |
const service = new Alipay(options) |
问题修复了,感谢你的反馈 |
const basicParams = { |
@zengleyi 有啥疑问吗? |
请问下 app 支付 回调地址设置 |
对 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
网页支付的异步回调地址在哪里配?
The text was updated successfully, but these errors were encountered: