摘要: sitemap 的索引提示是默认开启的,如需要关闭 sitemap 的索引提示,可在小程序项目配置文件 project.config.json 的 setting 中配置字段 checkSiteMap 为 false 阅读全文
posted @ 2019-09-22 17:59 在学习编程的lsy呀 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 在wx:for后面添加wx:key="key" 可消除警告。 阅读全文
posted @ 2019-09-22 17:50 在学习编程的lsy呀 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 赋值的方式不对 我当时是数组循环赋值,结果没有显示出来 然后采用了下面的赋值方式就正确了 var that = this; that.setData({ listDatas: res.data }); var that = this; that.setData({ listDatas: res.da 阅读全文
posted @ 2019-09-22 17:44 在学习编程的lsy呀 阅读(1521) 评论(0) 推荐(0) 编辑
摘要: js: data:{ listDatas:null//请求的数据存在这个数组里面 } onLoad: function (options) { const db = wx.cloud.database(); db.collection('otheritems').get().then(res => 阅读全文
posted @ 2019-09-22 17:39 在学习编程的lsy呀 阅读(863) 评论(0) 推荐(0) 编辑
摘要: wxml: <van-tag round size="medium" type="{{item.type?'danger':'primary'}}">{{item.type?'失物招领':'寻物启事'}}</van-tag> js: listDatas: [ { type: 1, name: '充电 阅读全文
posted @ 2019-09-22 09:46 在学习编程的lsy呀 阅读(1852) 评论(0) 推荐(0) 编辑