文章分类 -  DolphinHybrid

上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
popNativePage 回退到指定堆栈的已经存在的页面
摘要:popNativePage ^7.8 回退到指定堆栈的已经存在的页面 #请求参数 Prop Type Required Default Comment type String N N/A 判断pageName值做调整,1:返回上个堆栈界面,2:返回根堆栈,type=1和2不需要判断pageName, 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(11) 评论(0) 推荐(0)
goToPage 跳转到指定页面
摘要:goToPage ^7.8 跳转到指定页面 #请求方式一:拼接成url Prop Type Required Default Comment url String Y N/A 规则的路径:如:meiju://com.midea.meiju/main?type=jumpWeex&url=midea-r 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(27) 评论(0) 推荐(0)
stopSpeechToText 停止语音转文字
摘要:stopSpeechToText ^7.8 停止语音转文字 #请求参数 N/A #接口调用示例 this.$bridge .stopSpeechToText() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) } 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(12) 评论(0) 推荐(0)
startSpeechToText 从麦克风采集语音识别转文字
摘要:startSpeechToText ^7.8 从麦克风采集语音识别转文字 #请求参数 N/A #接口调用示例 this.$bridge .startSpeechToText() .then(res => { this.$alert(res) }) .catch(err => { this.$toas 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(3) 评论(0) 推荐(0)
stopTextToSpeech 停止文字转语音
摘要:stopTextToSpeech ^7.8 停止文字转语音 #请求参数 N/A #接口调用示例 this.$bridge .stopTextToSpeech() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) } 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(5) 评论(0) 推荐(0)
prepareSpeech
摘要:prepareSpeech ^7.8 prepareSpeech #请求参数 N/A #接口调用示例 this.$bridge .prepareSpeech() .then(res => { this.$alert(res) }) .catch(err => { this.$toast(err) } 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(6) 评论(0) 推荐(0)
getString 获取剪切板内容
摘要:getString ^7.8 获取剪切板内容 #请求参数 N/A #接口调用示例 this.$bridge .getString() .then(res => { console.log('getString-res', res) }) .catch(err => { console.log('ge 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(16) 评论(0) 推荐(0)
setString 设置剪切板内容
摘要:setString ^7.8 设置剪切板内容 #请求参数 Prop Type Required Default Comment params String Y N/A 要复制的内容 #接口调用示例 const params = "ceshi2222" this.$bridge.setString(p 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(6) 评论(0) 推荐(0)
callTelList 弹出拨打电话列表接口(从APP整屏底部弹出)
摘要:callTelList ^7.8 弹出拨打电话列表接口(从APP整屏底部弹出) #请求参数 Prop Type Default Comment tel String N/A 13535676678 title String N/A 美的: desc String N/A 在线客服 #接口调用示例 c 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(9) 评论(0) 推荐(0)
callTel 拨打电话接口(Promise返回)
摘要:callTel ^7.8 拨打电话接口(Promise返回) #请求参数 Prop Type Default Comment tel String N/A 拨打的电话号码 title String N/A 确认框的标题,如“客户服务” desc String N/A 确认框的描述,如“拨打热线电话: 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(8) 评论(0) 推荐(0)
editSiriInstructShortcut 编辑自定义指令Siri shortcut
摘要:editSiriInstructShortcut ^8.7 编辑自定义指令Siri shortcut #请求参数 Prop Type Default Comment sceneId String N/A 场景ID sceneName String N/A 场景名 #接口调用示例 const para 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(21) 评论(0) 推荐(0)
getAllSiriInstructShortcuts 获取已创建的siri 自定义指令 shortcut 列表
摘要:getAllSiriInstructShortcuts ^8.7 获取已创建的siri 自定义指令 shortcut 列表 #请求参数 N/A #接口调用示例 this.$bridge .getAllSiriInstructShortcuts() .then(res => { this.$alert 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(6) 评论(0) 推荐(0)
addInstructToSiriShortcut 添加Siri自定义指令 Shortcut
摘要:addInstructToSiriShortcut ^8.7 添加Siri自定义指令 Shortcut #请求参数 Prop Type Default Comment sceneName String N/A 执行的场景名称,同一个sceneId下不能同名 sceneId String N/A 执行 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(14) 评论(0) 推荐(0)
editSiriShortcut 编辑场景Siri Shortcut
摘要:editSiriShortcut ^7.8 编辑场景Siri Shortcut #请求参数 Prop Type Default Comment homegroupId String N/A 家庭ID sceneId String N/A 场景ID #接口调用示例 const params = { " 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(6) 评论(0) 推荐(0)
getAllSiriShortcuts 获取场景里的所有Siri Shortcut 列表
摘要:getAllSiriShortcuts ^7.8 获取场景里的所有Siri Shortcut 列表 #请求参数 N/A #接口调用示例 this.$bridge .getAllSiriShortcuts() .then(res => { this.$alert(res) }) .catch(err 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(4) 评论(0) 推荐(0)
addSceneToSiriShortcut 添加场景到Siri Shortcut
摘要:addSceneToSiriShortcut ^7.8 添加场景到Siri Shortcut #请求参数 Prop Type Default Comment homegroupId String N/A 家庭ID sceneId String N/A 场景ID sceneName String N/ 阅读全文
posted @ 2024-12-21 14:40 AtlasLapetos 阅读(7) 评论(0) 推荐(0)
canUseSiriShortcut 获取ios设备,是否支持SiriShortcut
摘要:canUseSiriShortcut ^7.8 获取ios设备,是否支持SiriShortcut #请求参数 N/A #接口调用示例 this.$bridge .canUseSiriShortcut() .then(res => { this.$alert(res) }) .catch(err => 阅读全文
posted @ 2024-12-21 14:39 AtlasLapetos 阅读(5) 评论(0) 推荐(0)
getAppWeatherInfo 获取天气信息
摘要:getAppWeatherInfo ^7.8 获取天气信息 #请求参数 Prop Type Default Comment isNeedRefresh Boolean N/A 是否需要APP刷新数据,默认是否 #接口调用示例 const params = { isNeedRefresh: true, 阅读全文
posted @ 2024-12-21 14:39 AtlasLapetos 阅读(18) 评论(0) 推荐(0)
getWeatherInfo 获取指定城市的天气信息
摘要:getWeatherInfo ^7.8 获取指定城市的天气信息 #请求参数 Prop Type Default Comment cityNo String N/A 位置信息 #接口调用示例 const params = { "cityNo": "位置信息" } this.$bridge .getWe 阅读全文
posted @ 2024-12-21 14:39 AtlasLapetos 阅读(24) 评论(0) 推荐(0)
uploadFileToOss 上传文件到阿里 oss
摘要:uploadFileToOss ^7.8 上传文件到阿里 oss #请求参数 Prop Type Default Comment fileList String N/A 本地文件路径 如['/xxx/xx.vue'] #接口调用示例 const params = { "fileList": ['/x 阅读全文
posted @ 2024-12-21 14:38 AtlasLapetos 阅读(10) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页