ajax请求接口-get请求数据不刷新问题
原因:当get请求接口时,如果接口相同(请求参数不改变)则会拉缓存里面的数据,不会去服务器拉新数据。
处理:在ajax请求时加上cache: false,可以使请求接口时在后面加上一个时间戳
$.ajax({ type: "get",
url: common.subUrlFun(domainUrl), data: JSON.stringify(params), async: true, cache: false, contentType: 'application/json', success: function(res) {}, error:function(res){} })
效果如下: