Subscribe on changes!

ref变量在{{}}中直接++会发生莫名其妙的累加

avatar
Apr 29th 2022

Version

3.2.33

Reproduction link

sfc.vuejs.org/

Steps to reproduce

已在SFC Playground中写好注释

What is expected?

ref自累加正常

What is actually happening?

ref变量在双括号中自++,会出现莫名奇妙的加法,控制另一个reactive变量时,ref也会自行增加

avatar
Apr 29th 2022

这是符合预期的。你在模板中自增会相当于在渲染时修改响应式数据,于是重新触发渲染,造成无限递归。