日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

antd-mobile 請求時Loading組件

作者:_花開富貴 更新時間: 2022-03-15 編程語言
import { Toast } from 'antd-mobile'
// 請求數據功能
async render() {
	try {
		// 開啟loading
		Toast.loading('Loading...', 0, null, false)
		const res = await axios.get(`請求地址`);
		const data = res.data;
		//各種操作之后
		// 關閉loading
		Toast.hide()
	} catch (e) {
		// 關閉loading
		Toast.hide()
	}
}

原文鏈接:https://blog.csdn.net/sinat_42338962/article/details/120437602

欄目分類
最近更新