gpt4 book ai didi

javascript - Vue.js 使用 post 方法重定向

转载 作者:行者123 更新时间:2023-12-01 02:00:58 24 4
gpt4 key购买 nike

如何使用 post 方法而不使用 ajax 从 Vue.js 重定向到 laravel Controller ,以便我可以在 Controller 内使用 var_dump 或 dd ?

//Vue.js
axios.post('/add-hotel-listing', this.finish).then((response) => {

});
//Laravel
public function addHotelListing(Request $request){

$input=$request->all();

dd($input);

}

最佳答案

要在不使用 ajax 的情况下进行重定向,您只需使用经典的 JavaScript:

window.location.href = "/new/window/location";

关于javascript - Vue.js 使用 post 方法重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50588895/

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