关于开发者工具AppData面板的一个小建议
现在在AppData面板打开的情况下,更改页面数据(setData),不会显示变化。不过切换到其他选项卡再切换回来就能看到数据变化了。
希望能增加在打开AppData面板的情况下,也能看到数据变化的功能。
4 回复
login: function (e) { console.log(e) let name = e.detail && e.detail.userInfo && e.detail.userInfo.nickName let avatar = e.detail && e.detail.userInfo && e.detail.userInfo.avatarUrl name && avatar && this .setData({ user: { name: name, avatar: avatar } }) console.log( 'user' , this .data.user) }, logout: function () { this .setData({ user: null }) console.log( 'user' , this .data.user) }, |
更改data的代码如上