国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

微信小程序開(kāi)發(fā)文檔 / wxapp操作反饋消息提示框:loading

wxapp操作反饋消息提示框:loading

注意:

即將廢棄,請(qǐng)使用 API wx.showToast


消息提示框

QQ截圖20170208103821.png

示例代碼:

<view class="body-view">
    <loading hidden="{{hidden}}">
        加載中...
    </loading>
    <button type="default" bindtap="loadingTap">點(diǎn)擊彈出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);
    }
})