- ios端分包异步化失效
分包异步化ios端:非主包页面进入小程序,分包异步化失效 测试结果:线上非必现;使用真机调试可以必现
2021-11-26 - 小程序中使用Map 数据结构不能在data中定义?开发插件不能使用Map数据结构?
1.在插件中的onLoad定义Map并setData进去 onLoad: function() { let type = new Map([ [ '1000', '全部' ], [ '1001', '装饰改装' ], [ '1002', '汽车美容' ], [ '1003', '快速保修' ], [ '1004', '电子影音' ], ]); this.setData({ type2: [...type], type: type }) this.getList(); }, 然后请求数据回来取值 obj.productType = this.data.type.get(obj.productType); .then(data => { let list = this.data.list; for (let obj of data.content) { obj.productType = this.data.type.get(obj.productType); obj.realPrice = obj.realPrice.toFixed(2); list.push(obj); } this.setData({ list: list, last: data.last, }) wx.stopPullDownRefresh(); }) 在插件中是可以的 [图片] 在第三方小程序中使用报错 [图片] 请问怎么解决?
2020-05-21 - css 选择器选择所有同级标签编译报错,是不支持~吗?
.content_img:first-child:nth-last-child(2), .content_img:first-child:nth-last-child(2) ~.content_img{ width: 150px!important; height: 150px!important; }; .content_img:first-child:nth-last-child(n+3), .content_img:first-child:nth-last-child(n+3) ~.content_img{ width: 100px!important; height: 100px!important; }; 上面css选择器 ~ 选择所有同级的元素报错 [图片] [图片]
2020-03-18