最新 最热

微信小程序弹出层动画

<button bindtap="showModal">Click Me</button><view class="pop" wx:if="{{showPop}}"> <view class="popbg" bindtap="hideModal"></view> <view class="popup"......

2020-09-03
0

微信小程序之间跳转及传参

在app.js里onLaunch、onShow或者在page页面的onLoad里打印参数

2020-09-03
1

微信小程序子组件向父组件传值

子组件 <button type="primary" bindtap="getoption">确定</button> data: { }, methods: { getoption(e) { this.triggerEvent(&#x27;index&#x27;, {i:1})//triggerEvent广......

2020-09-03
0

微信小程序实现canvas生成海报保存到本地

效果图 <view> <canvas class="canvas" style="width: {{canvas_width}}px;height:{{canvas_height}}px;

2020-09-03
0

微信小程序实现图片上传限制数量和删除

<view class="col"> <view class="file" wx:for="{{fileList}}" wx:key="index"> <image mode="aspectFill" src="{{item}}" /> ......

2020-09-03
1

微信小程序swiper显示左右两边内容

<swiper class="swiper" next-margin="120rpx" previous-margin="120rpx" current="{{currentItemId}}" bindchange="swiperChange" autoplay indicator-dots indic......

2020-09-03
0

微信小程序生命周期

//index.jsPage({ data: { text: "This is page data." }, onLoad: function(options) { // 页面创建时执行 }, onShow: function() { // 页面出现在前台时执行 },...

2020-09-03
0

微信小程序使用scroll-view做导航栏

效果图 <scroll-view class="banner" scroll-x="true" scroll-with-animation="true" scroll-in

2020-09-03
1

微信小程序锚点选择导航栏

<view class='box'> <scroll-view scroll-y scroll-with-animation style="width:25%"> <view

2020-09-02
0

维护你的请求队列,处理token异常

网络请求是开发中最基础也是最核心的需求,封装一个稳定且可用性高的请求也显得尤为重要。通常封装的内容除了入参之外,更多的是请求中的异常处理。本文分享下我在处理 token 异常方面的做法,通过维护请求队列,实现重发请...

2020-08-24
1