修复部分情况下,弹幕打开/关闭失败的bug

This commit is contained in:
xiongxiaoyang 2019-11-11 13:15:41 +08:00
parent cf347cdf98
commit e2f154516a

View File

@ -1,26 +1,28 @@
var token = localStorage.getItem("token"); Array.prototype.indexOf = function (val) {
if (token) {
$.get("/user/isLogin", { "token": token}, function (data) {
if(data.code != 1){//未登录
localStorage.removeItem("token");
}})
}
Array.prototype.indexOf = function (val) {
for (var i = 0; i < this.length; i++) { for (var i = 0; i < this.length; i++) {
if (this[i] == val) return i; if (this[i] == val) return i;
} }
return -1; return -1;
}; };
Array.prototype.remove = function (val) { Array.prototype.remove = function (val) {
var index = this.indexOf(val); var index = this.indexOf(val);
if (index > -1) { if (index > -1) {
this.splice(index, 1); this.splice(index, 1);
} }
}; };
var token = localStorage.getItem("token");
if (token) {
$.get("/user/isLogin", {"token": token}, function (data) {
if (data.code != 1) {//未登录
localStorage.removeItem("token");
}
})
}
function readHistory() { function readHistory() {
var books = localStorage.getItem("historyBooks"); var books = localStorage.getItem("historyBooks");
var bookIds = "-1929"; var bookIds = "-1929";
@ -28,7 +30,7 @@ if (token) {
bookIds = JSON.parse(localStorage.getItem("historyBooks")).join(","); bookIds = JSON.parse(localStorage.getItem("historyBooks")).join(",");
} }
window.location.href = "/book/search?historyBookIds=" + bookIds; window.location.href = "/book/search?historyBookIds=" + bookIds;
}; };