dlt.navigateToDeeplink
简介
通过 deeplink 打开外部应用,该 API 仅对内部开放,需主动申请。
参数
Object object
属性 | 类型 | 默认值 | 必填 | 描述 |
---|---|---|---|---|
deeplink | string | 是 | 跳转的 deeplink | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
deeplink:
1. 跳转到短信页面:smsto:号码:消息内容
deeplink: 'smsto:10086:hhhhhhh';
2. 跳转到拨号页面:tel:号码
deeplink: 'tel:10086';
3. 外部浏览器打开网址
deeplink: 'https://www.baidu.com'; //使用默认浏览器打开
4. 拉起其他外部应用,intent uri 规则
//跳转到google play
deeplink: 'https://play.google.com/store/apps/details';
//跳转到京东
deeplink: 'openapp.jdmobile://virtual';
示例代码
dlt.navigateToDeeplink({
deeplink: 'https://www.baidu.com',
});