wxml文件
<scroll-view class="scroll-reminders" scroll-y="true">
<view
wx:for="{{notes}}"
wx:for-item="{{note}}"
>
{{note}}
</view>
js文件
onSubmitEvent: function(e){
// 得到用户欲添加,此处先保存显示,后续要上传云端
this.data.notes.push(e.detail.value.newReminders)
this.setData({
notes: this.data.notes,
})
console.log(this.data.notes)
}
如果不用wx:for,直接显示的话可以直接更新,但加上wx:for就没办法了,各位大佬有什么解决方法么?
WXML:
<view wx:for="{{notes}}" wx:key="key" > {{note}}</view>
JS:
var notes = this.data.notes
notes.push(e.detail.value.newReminders)
this.setData({
notes
})