Chrome displays ajax response when pressing back button

后端 未结 8 2058
闹比i
闹比i 2020-12-07 22:05

I\'ve come across a problem that if I use jQuery\'s Get method to get some content, if I click back, instead of it actually going back one page in the history, it instead sh

相关标签:
8条回答
  • 2020-12-07 22:42

    I couldn't give different urls for each ajax request as it was an ajax pagination, declaring no cache on headers did nothing, so i included a little javascript in the view only when headers were for the ajax request:

    <script>
    if (typeof jQuery == 'undefined') {
        window.location = "<?php echo $this->here; ?>";
    }
    </script>
    

    It is a dirty trick, but it works, if the ajax content is normally loaded, the container has Jquery loaded so it does nothing. But if you load the ajax supposed content without the surrounding content, Jquery is missing (at least in my case), so i redirect to the current page requesting a normal GET page with all the headers and scripts.

    If you put it in the top of the page, the user won't notice because it won't wait till the page loads, it will redirect as soon as the browser gets this 4 lines...

    Replace here; ?> by the current url in your APP, this was a CakePhp 2.X

    0 讨论(0)
  • 2020-12-07 22:44

    If I want to use index method of a laravel controller returns both html and json response, I add a get parameter at the end of the endpoint to pass browser caching:

    axios.get(url, {params: {ajax: 1}})
    
    0 讨论(0)
  • 2020-12-07 22:50

    Actually this is the expected behavior of caching system according to specs and not a chrome issue. The cache only differentiate requests base on URL and request method (get, post, ...), not any of the request headers.

    But there is a Vary header to tell browser to consider some headers when checking the cache. For example by adding Vary:X-Requested-With to the server response the browser knows that this response vary if request X-Requested-With header is changed. Or by adding Vary:Content-Type to the server response the browser knows that this response vary if request Content-Type header is changed.

    You can add this line to your router for PHP:

    header('Vary:X-Requested-With');
    

    And use a middleware in node.js:

    app.use(function(req, res) {
        res.header('Vary', 'X-Requested-With');
    });
    
    0 讨论(0)
  • 2020-12-07 23:02

    You can also add a random value to the end of the ajax url. This will ignore the previous chrome cache and will request a new version

    url = '/?'+Math.random()
    
    0 讨论(0)
  • 2020-12-07 23:06

    Just in case you are using jQuery with History API (or some library like history.js), you should change $.getJSON to $.ajax with cache set to false:

    $.ajax({
        dataType: "json",
        url: url,
        cache: false,
        success: function (json) {...}
    });
    
    0 讨论(0)
  • 2020-12-07 23:07

    Make sure your AJAX requests use a different URL from the full HTML documents. Chrome caches the most recent request even if it is just a partial.

    https://code.google.com/p/chromium/issues/detail?id=108425

    0 讨论(0)
提交回复
热议问题