- CSS nth-child问题
JS代码: data: { tests: [{}, {},{}] }, wxml代码: <view> <view class='lists'> <block wx:for="{{tests}}" wx:for-item="item" wx:for-index="index" wx:key="item"> <view class='lists-item'> <view class='lists-item1'>我是{{index}} Index的第一个</view> <view class='lists-item2'>我是{{index}} Index的第二个</view> </view> </block> </view> </view> wxss代码: .lists{ display: flex; flex-direction: column; } .lists :nth-child(odd){ background-color: yellow } .lists-item{ margin-bottom: 20rpx; background-color: red } 问题BUG: 使用了:nth-child 理论上讲应该是每一个lists-item的奇数背景是yellow色的 但是运行代码后 出现的确实这样的: [图片] 每一个lists-item 出现了:nth-child[图片] 但是每个lists-item中的子view居然也出现了 :nth-child [图片] 请问这个是什么问题?求解释
2019-01-18 - WXS与setInterval BUG问题
- 当前 Bug 的表现(可附上截图) 在真机上同一页面内 同时使用WXS与setInterval时,WXS内的funtion会重复调用 在微信开发者工具上并不会出现 [图片] - 提供一个最简复现 Demo js代码: data: { test: '', array: [1, 2, 3, 4, 5, 1, 2, 3, 4] }, onLoad: function(options) { let _this = this; setInterval(() => { console.log("这是计时") _this.setData({ test: '这是计时' }) },1000); }, wxml代码: <wxs module="m1"> var getMax = function(array) { var max = undefined; for (var i = 0; i < array.length; ++i) { max = max === undefined ? array[i] : (max >= array[i] ? max : array[i]); } console.log("max", max) return max; } module.exports.getMax = getMax; </wxs> <view> {{m1.getMax(array)}} </view> <view> {{test}} </view> @官方大神 求意见和建议!!!!
2018-12-05 - appServiceSDKScriptError出现BUG 求解决!!!
Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E216MicroMessenger/6.7.4(0x1607042c) NetType/WIFI Language/zh_CN 机型 在onError出现了错误 请官方给点建议和意见 多谢!!!!! 具体表现为 1. appServiceSDKScriptError undefined is not an object (evaluating 'Yn.env.USER_DATA_PATH') 2. appServiceSDKScriptError undefined is not an object (evaluating 't[e]'); at wx.getUserInfo yt@https://lib/WAService.js:1:295275 getUserInfo@https://lib/WAService.js:1:528414 https://lib/WAService.js:1:537958 https://lib/WAService.js:1:537962 https://lib/WAService.js:1:297164 https://lib/WAService.js:1:537023 https://lib/WAService.js:1:537119 https://lib/WAService.js:1:255913 success@https://usr/app-service.js:43:1401 https://lib/WAService.js:1:536839 https://lib/WAService.js:1:101417 o@https://lib/WAService.js:1:250846 https://lib/WAService.js:1:251018 y@https://lib/WAService.js:1:1378 global code&version=1.2.6
2018-11-29 - official-account显示问题
过程: 有两个页面 index页面与Test页面 扫小程序码进入index页面 scene值为1047 然后跳转到Test页面,页面中有official-account这个组件,但是没有显示出来 问题: 想问下官方,是只有符合场景值 并且扫小程序码后跳转的这个页面 中有official-account这个组件,才会显示么? 问题补充: 具体场景为 第一步:扫小程序码进入index页面 scene值为1047 第二步:跳转到TestA页面,该页面有微信支付,微信支付成功后,跳转到TestB页面 第三步:TestB页面中有official-account这个组件,但是没有显示出来
2018-10-25 - Image标签显示问题
1.使用Image双标签作为背景,wxss中使用了position: relative 2.Image标签中的子View在wxss中使用了position: absolute;top: 0;left: 0; 现在子View中所有内容显示不出来,如果把Image标签去掉 并更改成View标签 就会正常显示; 请微信各位技术大大 解决 感谢 在线等 等急的~
2018-06-12