dtwbp26022 2019-05-21 06:34
浏览 57
已采纳

虽然我在控制台中看到了新页面,但是laravel jquery ajax没有重定向

I want to do this in laravel: https://laravel.com/docs/5.6/redirects

I have a simple button, a named route, and I want the route to redirect to another page.

Although I see the new page in the network console of Chrome, the page itself is not actually redirecting.

(I don't want to use the window.location.href in the javascript function as I want the route to do the job.)

layout.blade.php

    $("#myRedirectButton").click(function(){

        $.ajaxSetup({
            headers: {
                'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
            }
        });

        $.ajax({
            method: 'post',
            dataType: 'text',
            url: 'redirect-testing-link',
            success: function (data)
            {

            }
        });

    });

routes/web.php

Route::post('/redirect-testing-link', function () {
    return redirect()->route('gidis');
});


Route::get('/gosterge_paneli', function () {
    return view('gosterge_paneli');
})->name('gidis');

展开全部

  • 写回答

1条回答 默认 最新

  • douxian5076 2019-05-21 06:49
    关注

    You can't do a serverside redirect after an AJAX request, so what you ask is very hard.

    The simplest ways to solve it are by using either the window.location you wanted to avoid, or skip the whole AJAX call and use an <a> element.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部