- cavas是否支持画虚线框
rt,类似native path为虚线属性。 在api里没找着。
2017-10-10 - 点击事件currentTarget和target的区别是?
rt。 currentTarget和target里面都有dataset,建议取哪个?
2017-10-10 - list item点击
想咨询一下,在xml中for循环给每个item定义了bindtap,但在js中如何得到点击的这个item? 打印出bind方法的options没有相关信息啊。 感觉官方文档好多非常常用的示例都没有,demo也没有。
2017-10-10 - 小程序弹窗
自定义弹窗该如何显示,因有的弹窗功能不仅仅是title\message\cancel\confirm,还有一些别的定制化功能 wx.showModal
2017-10-08 - 屏幕宽度rpx
屏幕宽度到底700rpx还是750rpx,看官方文档写的750,但实际预览为700。 https://mp.weixin.qq.com/debug/wxadoc/dev/framework/view/wxss.html
2017-10-08 - 小程序button loading
button的loading属性设置成false并没有什么用,按说true时有个loading圈圈,false时恢复常态比较合理吧?
2017-10-08 - 小程序navbar
navbar如何将左上角关闭叉叉隐藏掉?用户经常会误点然后关闭小程序,只要back就行了。 nabber能否在page代码中设置而不仅仅在json中配置?因为有时候需要动态改title。
2017-10-08 - text文本超出view
view设定了宽度,text文本超出一行直接截掉而不是超出父view,应该设置什么属性
2017-10-07 - 小程序特殊字符的表示
页面特殊字符应如何在页面中表示出来,如 √@copy;@reg;等
2017-10-07 - 小程序的swiper-item内容横排
想要实现类似gridview的效果,但是swiper-item里的view wcss失效,无法实现横排,是怎么回事? 预期如图:[图片] 实际如图: [图片] 代码如下: <swiper indicator-dots="{{userIndicatorDots}}"> <swiper-item wx:for="{{userPage}}" wx:for-index="i" wx:key="*this"> <view wx:for="{{userPageList[i]}}" class='userRow' wx:key="*this"> <view class='userItem'> <image src="{{item.image}}" class="userAvatar" /> <text class="userNameText">{{item.name}}</text> <text class="userMoneyText">已付{{item.money}}元</text> </view> </view> </swiper-item> .userRow{ flex-direction: row; } .userItem { flex-direction: column; background-color: #eee; margin: 20rpx; }
2017-10-07