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

时间:2016-12-23 03:47:41

标签: javascript laravel vue.js laravel-5.3 httpwebresponse

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

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

import tkinter as tk

# --- functions ---

def callback():
    print("value:", w.get())

# --- main ---

root = tk.Tk()

w = tk.Spinbox(root, state='readonly', from_=1, to=5, command=callback)
w.pack()

root.mainloop()

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

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

swal是一个提醒消息插件

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

1 个答案:

答案 0 :(得分:2)

您可以使用错误回调。

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