我有以下代码有问题。
在我的模板中单击我的button
后,我的counter
将增加。现在我想检查我的counter
是否高于、低于或等于数组的length
。
在完成for-loops
之后,我想将counter
设置为零。
我试过return this.counter = 0
-但这不起作用。
提前感谢你的帮助!
methods: {
if(this.counter > this.lengthArray) {
for(let i = this.lengthArray; i <= this.counter; i++) {
//Do some code
}
} else if (this.lengthArray > this.counter) {
for(let i = 1; i <= this.counter; i++) {
//Do some code as well
}
} else if (counter == 0) {
//Process another code
}
},
data() {
return {
counter: 0
}
}
您不希望方法return
值this.counter = 0
在最后一个条件之后设置this.counter = 0
应该可以工作。不能返回或中断循环。