[For personal use] Wechat applet prints the value undefined in data

I have to say that after getting used to Vue, I feel that the language of WeChat developer tools is really uncomfortable.

Solution:

Wrong way:

console.log(this.xxxx)

Correct spelling:

console.log(this.data.xxxx)

Guess you like

Origin blog.csdn.net/qq_43768851/article/details/128166544