我有一个条件里面我有一个循环,当我运行的代码我能够通过条件,但在我的条件我有一个循环,没有得到执行。我的循环没有得到执行
此线之上构造
currentDate = new Date();
这条线在我的控制台类
if (form.value.packType == "Per Week") {
console.log("I could able to see this console");
for (var a = this.currentDate.getDate(); a < 8; a++) {
console.log("I could not see this console",a)
}
}
里面,我可以看到的“每一周”的价值,但我一个无法看到控制台在我的日志里面。
有人可以帮助我。
“每周”或“每周”? – Vega
我能够通过条件,只有我无法看到循环内的值 –
通过在if语句之前执行console.log(form.value.packType)来检查您是否有“每周” – Vega