this.data/this.state【状态更改】

125 阅读1分钟

例:

data: {
    title: "xiaolei"
}

在快应用、VUE中:

//快应用、vue中
this.title = "sicong"

在小程序、React中:

//小程序
this.setdata({
    title: 'sicong'
})

//React
this.setState({
    title: 'sicong'
})

更改变量键值

例:

data: {
    class: {
        title: 'xiaolei'
    }
}

小程序、React

this.setData({
    ['class.title']: 'sicong'
})

//变量键值 变量name = 'title'
this.setData({
    class: {
        [name]: 'sicong'
    }
})