我有一张处方表格,并使用AJAX提交了表格。
现在,我想在表单成功提交后自动从AJAX重定向到另一条路由。
我尝试了
等几种选项window.location.href = "{ url('/show-all-prescription') }"
和
{{ route('/show-all-prescription')}}
AJAX代码
jQuery.ajax({
url:"{{ url('/submit_prescription') }}",
type: 'GET',
data: {name: name, age: age, mobile_no: mobile_no},
success:function(msg){
if(msg>0)
{
// window.location.href = "{ url('/show-all-prescription') }";
{{ route('/show-all-prescription')}}
}
}
});
并收到错误
未定义路由[/ show-all-prescription]
route.php
Route::get('/show-all-prescription', 'prescriptionController@show_all_prescription');
但没有得到结果。有人帮忙吗?
答案 0 :(得分:2)
在路由文件中
win32gui.GetWindowText(win32gui.GetForegroundWindow())
然后在刀片文件ajax请求中
Route::get('/show-all-prescription', 'prescriptionController@show_all_prescription')->name('show-all-prescription');