gpt4 book ai didi

javascript - 付款后重定向到带有成功消息的不同页面 - Vue JS

转载 作者:行者123 更新时间:2023-11-30 15:37:33 27 4
gpt4 key购买 nike

我有一个打开的支付模式,一旦用户填写它,如果支付成功,我想重定向到另一个页面,并显示一条成功消息。我正在使用 Laravel 5.3 和 Vue JS。

现在,它是这样的,我让它重定向到另一个页面,但我该如何附加某种成功消息?

this.$http.post('/cropkit/public/subscriptions', this.$data).then(
window.location.replace('/cropkit/public/profile/dashboard'),
response => this.status = response.body.status
);

/******** 编辑 *********/

这是检查是否成功或发生错误的解决方案:

swal是一个提醒消息插件

                    this.$http.post('/mysite/subscriptions', this.$data).then((response) => {
swal({
title: "Success!",
text: "Payment has been processed!",
type: "success",
showConfirmButton: false,
allowEscapeKey: false,
allowOutsideClick: false,
timer: 5000,
}),
setTimeout(function(){
window.location.replace('/mysite/profile/dashboard');
}, 4000)
}, (response) => {
this.status = response.body.status
});

最佳答案

您可以使用错误回调。

return this.$http.post(url, data).then((response) => {
// success, do success logic
}, (response) => {
// redirect to error view
});

关于javascript - 付款后重定向到带有成功消息的不同页面 - Vue JS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41294913/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com