1:ie浏览器一直从缓存中读取数据
解决方法:
// 1:jQuery全局设置禁止缓存
$.ajaxSetup({
cache : false
});
//2:在Head里添加禁止使用缓存的代码,事实上并没有什么nuan用
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">
//3: 在请求时,后面携带时间参数
麻烦
//4:改成post请求,就没缓存了,对,让后台改
2:用vue在标签上设置 **data-****属性时,
由于ie浏览器无法获取到currentTarget.dataset属性,导致获取时一直报错,在这个项目中由于引用了jquery,我使用jquery方法 **data(‘属性名’)**的方法获取标签上的ie,以后用如果没有前后端分离时不要使用vue提供的方法来获取data属性,避免ie报错
$(e.currentTarget).data('idas'),