15

我希望 ajax 帖子成功进入主页。出于某种原因,我一直在做错事。知道我应该怎么做才能解决这个问题吗?

window.APP_ROOT_URL = "<%= root_url %>";

阿贾克斯

$.ajax({ url: '#{addbank_bankaccts_path}',
 type: 'POST',
 beforeSend: function(xhr) {xhr.setRequestHeader('X-CSRF-Token', '#{form_authenticity_token}')},
 dataType: "json",
 data: 'some_uri=' + response.data.uri ,
 success: function(APP_ROOT_URL) {
      window.location.assign(APP_ROOT_URL);
  }
});
4

3 回答 3

22
success: function(response){
    window.location.href = response.redirect;
}

希望以上内容会有所帮助,因为我遇到了同样的问题

于 2013-08-08T05:42:16.107 回答
12

您可以从服务器返回带有重定向状态和重定向 URL 的 JSON。

{"redirect":true,"redirect_url":"https://example.com/go/to/somewhere.html"}

在你的 jQuery ajax 处理程序中

success: function (res) {
    // check redirect
    if (res.redirect) {
        window.location.href = res.redirect_url;
    }
}

请注意,您必须dataType: 'json'在 ajax 配置中进行设置。希望这会有所帮助。

于 2015-07-08T05:10:49.340 回答
5

不知道为什么,但window.location.href对我不起作用。我最终window.location.replace改用了,它确实有效。

$('#checkout').click(function (e) {
    e.preventDefault();
    $.ajax('/post/url', {
        type: 'post',
        dataType: 'json'
    })
    .done(function (data) {
        if (data.cartCount === 0) {
            alert('There are no items in cart to checkout');
        }
        else {
            window.location.replace('/Checkout/AddressAndPayment');
        }
    });
});
于 2017-03-24T23:09:57.310 回答