微信小程序wx.showLoading
时间:2019-02-18 11:37:11
收藏:0
阅读:317
wx.showLoading({
title: ‘加载中...‘,
})
wx.request({
url: ‘‘,
success(res){},
fail(){},
complete(){
wx.hideLoading()
}
})
评论(0)