赞
踩
直接上代码了
我们直接创建一个ToastUtil
import promptAction from '@ohos.promptAction'
export default function showToast(message: string, duration: number = 2000) {
try {
promptAction.showToast({
message: message,
duration: duration,
bottom: "center",
})
} catch (error) {
console.error(`showToast args error code is ${error.code}, message is ${error.message}`);
}
}
在调用的地方的 引入
import showToast from '../utils/ToastUtils';
使用的地方直接调用即可
showToast("测试")
End!!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。