Page({
data: {
limit: 15,
keyword: 'keyword',
result: []
},
onLoad() {
console.log(this.limit, this.keyword)
this.setData({
limit: 10
})
this.keyword = 'search'
},
onReady() {
console.log(this.limit, this.keyword)
},
onShow() {
console.log(this.limit, this.keyword)
}
...
1
wsxyeah 2018-01-11 18:11:25 +08:00 via iPhone
|