我的也出现了 提交不了 说图片路径错了
缺少文件, error: iconPath=xx, file not found- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo 缺少文件, error: iconPath=xx, file not found路径对,图片也有就是显示缺失文件
2019-07-03我也是遇到了这种问题,真机是好的。就是工具俩导航栏都显示出来了。
自定义 tabbar 问题- 需求的场景描述(希望解决的问题) 希望是这样的tabbar: [图片] - 希望提供的能力 根据官方自定义tabbar文档:https://developers.weixin.qq.com/miniprogram/dev/framework/ability/custom-tabbar.html 并且参考了大神的帖子:https://developers.weixin.qq.com/community/develop/doc/000c6e038c0ce05413f71e7ce56c04 发现真机运行和开发者工具运行效果不一样 真机(Android 微信7.0)运行起来一片白 [图片] 开发者工具(1.02.1812271)运行起来,原来的tabbar和我自定义的tabbar都显示出来了 [图片] 代码如下: <cover-view class="tabbar-box {{isIphoneX?'iphoneX-height':''}}" style="background-color:{{tabbar.backgroundColor}}"> <block wx:for="{{tabbar.list}}" wx:key="{{item.pagePath}}"> <navigator class="tabbar-item" url="{{item.pagePath}}" open-type="switchTab"> <cover-image class="tabbar-icon {{item.isSpecial ? 'tabbar-special':''}}" src="{{item.isSelected ? item.selectedIconPath:item.iconPath}}" /> </navigator> </block> </cover-view>
2019-01-15js通过点击下一个改变swiper-item的滑动,衔接不了。就是最后一张图片衔接第一个时。会往回回滚两张。但是向左操作,也就是上一个的时候衔接正常 <swiper circular="{{true}}" current="{{current}}" bindchange='swiperChange'> <swiper-item></swiper-item> <swiper-item></swiper-item><swiper-item></swiper-item> </swiper> <view bindtap="last"></view> <view bindtap="next"></view> next:function(){ this.setData({circular: this.data.circular - 1}) } last:function(){ this.setData({circular: this.data.circular + 1}) } swiperChange:function(e){ this.setData({ circular:e.detail.circular:e }) }
Swiper通过js控制滑动的时候,像右滑动衔接无效。像左有效Swiper通过js控制current属性滑动的时候,像右滑动衔接(circular)无效,像左有效。不通过js控制,手动操作正常
2018-12-20title不写 和title:""都一样的,就是没有标题了。文档上写的是必填属性。可以不填
弹框问题wx.showModel({})中的title可不可以不写,不想要提示,只想要内容。我发现不写手机和电脑上都是可以的。就是不知道会不会与机型有关
2018-08-09<image src='图片' mode='widthFix' style='width:100%;'></image> 我用的最新版本的调试库,手机上微信也是最新的,这个图片闪就是有的页面会出现,有的不会,电脑和手机都是我试过好几个了。很是奇怪
image标签的mode使用的时候,刚打开页面图片会闪一下刚打开页面的时候图片会闪一下,很明显,与缓存没关系的那种
2018-07-05