我有一张处方表格,并使用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')}}

    }
}
});

并收到错误



route.php
Route::get('/show-all-prescription', 'prescriptionController@show_all_prescription');

但没有得到结果。有人帮忙吗?

最佳答案

在路由文件中

Route::get('/show-all-prescription', 'prescriptionController@show_all_prescription')->name('show-all-prescription');

然后在 Blade 文件ajax请求中,
window.location.href = "{{ route('show-all-prescription')}}";

10-05 21:02