打開抓包工具Fiddler.exe就正常了,好奇怪
未加時(shí)間戳參數(shù)前:
layui.use(['laypage', 'layer'], function () {
var laypage = layui.laypage;
laypage.render({
elem: 'page'
, count: {{.count}}
, limit:{{.limit}}
, limits: [5, 10, 15, 20]
, layout: ['prev', 'page', 'next', 'limit']
, curr: {{.curr}}//獲取起始頁
, jump: function (obj, first) {
//obj包含了當(dāng)前分頁的所有參數(shù),比如:
console.log(obj.curr); //得到當(dāng)前頁吞加,以便向服務(wù)端請求對應(yīng)頁的數(shù)據(jù)。
console.log(obj.limit); //得到每頁顯示的條數(shù)
//首次不執(zhí)行
if (!first) {
location.replace(location.href.split("?")[0] + "?page=" + obj.curr + "&limit=" + obj.limit)
} else {
//layer.msg("first")
}
}
});
});
加時(shí)間戳參數(shù)后:
layui.use(['laypage', 'layer'], function () {
var laypage = layui.laypage;
laypage.render({
elem: 'page'
, count: {{.count}}
, limit:{{.limit}}
, limits: [5, 10, 15, 20]
, layout: ['prev', 'page', 'next', 'limit']
, curr: {{.curr}}//獲取起始頁
, jump: function (obj, first) {
//obj包含了當(dāng)前分頁的所有參數(shù),比如:
console.log(obj.curr); //得到當(dāng)前頁音五,以便向服務(wù)端請求對應(yīng)頁的數(shù)據(jù)才睹。
console.log(obj.limit); //得到每頁顯示的條數(shù)
//首次不執(zhí)行
if (!first) {
location.replace(location.href.split("?")[0] + "?page=" + obj.curr + "&limit=" + obj.limit+ "×tamp=" +(new Date()).format('yyyyMMddhhmmss'))
} else {
//layer.msg("first")
}
}
});
});
改成后面的代碼后,不再出現(xiàn)分頁加載不出來的問題了,可能是緩存的原因