wxapp 작업 피드백 메시지 프롬프트 상자: 로드 중


참고:

은(는) 더 이상 사용되지 않을 예정입니다. API를 사용하세요. wx.showToast


메시지 프롬프트 상자

QQ截图20170208103821.png

샘플 코드:

<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);
    }
})