ECMAScript 中的变量无特定的类型,定义变量时只用 var 运算符,可以将它初始化为任意值。
可以随时改变变量所存数据的类型
(尽量避免随便更改变量的类型 具体为什么不知道)
Page({
data: {
radios:[
{value:'1',text:'选项1',checked:false},
{ value: '2', text: '选项2', checked: false },
{ value: '3', text: '选项3', checked: false },
{ value: '4', text: '选项4', checked: false },
{ value: '5', text: '选项5', checked: true },
{ value: '6', text: '选项6', checked: false },
],
content:'json \n json \t json'
},
changeChoosed:function(event){
console.log('您选中了:'+event.detail.value);
console.log(this.data.content)
this.setData({
content : 122
});
console.log(this.data.content)
}
,
})