我在这里有一些代码:
this.$state.transitionTo('questions.question', { testId: this.$qs.userTestId, cq: this.$qs.cq + 1 });
this.$state.transitionTo('questions.question', { testId: this.$qs.userTestId, cq: this.$qs.cq - 1 });
这个。$ qs.cq的值是1.
当我的代码针对第一种情况运行而不是将其更改为2时,它会进入" 11"。如何才能进行数字加法(对于秒数情况,和减法)?
我确实在typescript中定义了:
cq: number;
但它似乎没有给出错误
答案 0 :(得分:2)
使用:
pareseInt(this.$qs.cq,10) + parseInt(this.$qs.cq,10)