Home > Article > Web Front-end > How to deal with jquery+ajax request data not refreshing
This time I will bring you jquery+ajax request data is not refreshed, how to handle jquery+ajax request data is not refreshed, what are the precautions, the following is a practical case, Let’s take a look.
Jquery's ajax has a situation when it frequently requests data or repeatedly requests data, that is, if it is not normal ie browser, the IE browser will set up a cache, resulting in the second It will not be refreshed when requesting, and the system reports 304 not modify,
Solution:
jquery's ajax method provides configuration parameters: cache, (Just set the property to false)
Details:
cache: Boolean
Default: true, The default is false when dataType is "script" and "jsonp". If set to false, the browser will not cache this page.
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
Ajax implements the complete process of registering a user name
How to implement ajax to return object Object
The above is the detailed content of How to deal with jquery+ajax request data not refreshing. For more information, please follow other related articles on the PHP Chinese website!