Home > Article > Web Front-end > Handling data issues in JQUERY's AJAX request cache_jquery
$.ajax({ url: 'ios/index', cache: false, type: 'post', data: { timestamp: new Date().getTime() //params here }, dataType: 'json' }).done(function (data) { //codes here });
Isn’t it very simple? I hope you guys will like it.