企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# showToast(显示模态提示) 相关代码如下: ``` /** * [showToast 显示模态提示] * @param {[string]} msg [消息内容] * @param {[string]} duration [模态框显示时间] * @param {[string]} location [模态框显示位置,top/middle/bottom] */ function showToast(msg, duration, location) { var msg = msg ? msg : '错误'; var duration = duration ? duration : '2000'; var location = location ? location : 'bootom'; api.toast({ msg: msg, duration: duration, location: location }); } ``` 相关示例: 相关图片: