说好的 uni.showLoading(),只能使用 uni.hideLoading() API关闭呢?

uni-app 交互API大坑

前言:说好的 uni.showLoading(),只能使用 uni.hideLoading() API关闭呢?

官方文档:https://uniapp.dcloud.io/api/ui/prompt?id=showloading

场景描述:

在向服务器发送请求前,我们习惯加上 加载中 的提示框,在请求完成或请求成功后延时2s关闭 加载中 的提示框,并使用 uni.showToast() API 提示一下请求的 message。

代码描述:

	uni.showLoading({
   
    	title:"加载中..."
	})
	uni.request({
   
	    method:"POST",
	    url:this.baseURL + '/tx/sendCode',
	   

你可能感兴趣的:(uni-app,vue,javascript)