小程序
webmi
这个作者很懒,什么都没留下…
展开
-
微信小程序navigateBack如何带参数
wx.navigateBack({//返回delta:1})方法如下:一.var pages = getCurrentPages();var prevPage = pages[pages.length - 2]; //上一个页面//直接调用上一个页面的setData()方法,把数据存到上一个页面中去prevPage.setData({mydata: {a:1, b:2}})二.回到上一页,在data里定义mydata,然后在onshow里var pages = getCurrent转载 2021-02-18 22:36:08 · 3686 阅读 · 0 评论 -
单页“navigationStyle“: “custom“,不生效
小程序单页"navigationStyle": “custom”,不生效的问题笔记:没有在app.json 配置页面路径原创 2020-12-11 11:03:30 · 5385 阅读 · 1 评论 -
微信小程序九宫格抽奖
微信小程序九宫格抽奖github 地址 https://gitee.com/mxu/Running-Horse-Lamp效果图[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-DNBm0GUZ-1587536586105)(https://blog.csdn.net/du591310450/article/details/83014445#pic_center)]...转载 2020-04-22 14:24:42 · 320 阅读 · 0 评论 -
image组件的binderror事件处理,图片加载不出处理,图片路径错误处理
<view>多个image</view><view class="bd-left-item" wx:for="{{classicArr}}"> <image src="{{item.img}}" class="item-img" binderror="errImg" data-err-img="classicArr[{{index}}].img" /...转载 2020-02-18 10:19:04 · 828 阅读 · 0 评论 -
微信小程序超出两行省略号
display: -webkit-box;overflow: hidden;text-overflow: ellipsis;word-wrap: break-word;white-space: normal !important;-webkit-line-clamp: 2;-webkit-box-orient: vertical;原创 2019-11-06 13:55:51 · 594 阅读 · 0 评论 -
小程序tab切换及swiper滑动
小程序tab切换及swiper滑动效果 : 点击上面的菜单栏可以切换相应的内容,滑动内容的时候,菜单栏也会跟着切换。<view class="my-order"> <view class="{{current == index ? 'change': ' '}}" wx:for="{{title}}" data-index="{{index}}" bindtap='ch...转载 2019-07-02 16:53:58 · 760 阅读 · 0 评论 -
css来控制img正方形自适应
css来控制div正方形自适应<div class="wrap"> <div class="div"> [外链图片转存失败(img-bcKBCvfV-1562059238005)(https://mp.csdn.net/mdeditor/94458762)] </div></div>.div{ widt...转载 2019-07-02 17:22:41 · 182 阅读 · 0 评论 -
微信小程序星星评价
<!--星星评价--><view class="container"> <view class="comment1-description"> <view class="star-pos" style="display:flex;flex-direction:row;"> <view class="stars {{...转载 2019-07-02 17:37:13 · 890 阅读 · 0 评论 -
仿美团scroll-into-view 定位
<scroll-view scroll-x style="width:100%;white-space:nowrap"><view wx:for="{{30}}" style="display:inline-block; margin:10rpx;border:1rpx solid red" data-id="{{index}}" bindtap="scroll">{{i...转载 2019-07-02 18:01:56 · 126 阅读 · 0 评论