我一直在做sheet.stopTC(aVal)
似乎还可以,但是在这里:
key: "stopTC",
value: function stopTC(z) {
if (z == true) {
z = false;
console.log("cache started");
} else {
z = true;
console.log("cache stopped");
}
return z;
}
//globals
aVal = false
该变量全局设置为false
,但返回时,aVal
保持false
而不是更改为true。
对不起,我是编程的新手,无法解决这个问题。
答案 0 :(得分:0)
您应该执行aVal = sheet.stopTC(aVal)
,它将变成true