data: {
ne:[],
},
onLoad: function (options) {
const db = wx.cloud.database();
db.collection('help-detail').get({
//如果查询成功的话
success: res => {
console.log(res.data)
this.setData({
ne: res.data
})
},
fail:console.error
})
},
////////////////////////////////////////////////////////////////////
<view class='container' wx:for="{{ne}}" wx:key="key" wx:for-item="item">
<view class="section">{{item.title}} </view>
</view>
前端什么都没有出现,这是哪里错了?调试器就输出 []
云开发数据库权限问题