获取的是固定id的数据
之前的获取数据放在onReady里,后来又试了试放在onLoad里,都是开发工具里正常,手机上无法获取数据
最下面分别是开发工具和手机的调试界面
onLoad: function () {
new AV.Query(Todo).include('avatar').find().then(todos => this.setData({ todos }));
new AV.Query(Todo)
.get('5b4a55fe9f5454003d90831d')
.then(mima => this.setData({ mima }));
new AV.Query(Todo)
.get('5b4f372cee920a003c2f071c')
.then(cishu => this.setData({ cishu }));
console.log('123123',this.data)
}