이 글에서는 주로 WeChat 애플릿 로딩에 대한 자세한 설명과 예제 코드를 소개합니다. 필요한 친구는
WeChat 애플릿 로딩
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
hidden | Boolean | false | 是否隐藏 |
<view class="body-view"> <loading hidden="{{hidden}}"> 加载中... </loading> <button type="default" bindtap="loadingTap">点击弹出loading</button> </view>
Page({ data: { hidden: true }, loadingTap: function(){ this.setData({ hidden: false }); var that = this; setTimeout(function(){ that.setData({ hidden: true }); that.update(); }, 3000); } })