💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 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 }); } ``` 相关示例: 相关图片: