Page({ data: {Page({
data: {
text: 'init data',
array: [{ msg: '1' }, { msg: '2' }],
phone:123456
},
printLength:function(e){
console.log(this.data)
console.log(this.data.length)
console.log(this.data.phone.length)
}
})
以上是源代码,后边给按钮添加printLength功能后输出为下边,以前不是直接输出phone的长度吗?