# openURL ^7.8

美居app外浏览器打开

# 请求参数

Prop Type Required Default Comment
params String Y N/A 需要打开地址,例如http://www.baidu.com

# 接口调用示例

const params = "http://www.baidu.com"
this.$bridge
  .openURL(params)
  .then(res => {
    this.$alert(res)
  })
  .catch(err => {
    this.$toast(err)
  })

1
2
3
4
5
6
7
8
9
10

# 返回参数

Prop Type Required Default Comment
code Number Y N/A 状态码, 0:成功,1: 非法url
msg String N N/A 状态信息

# 接口返回示例

// 成功返回
{
  code: 0,
  msg: "打开成功"
}

// 失败返回
{
  code: 1,
  msg: "非法url"
}

1
2
3
4
5
6
7
8
9
10
11
12
更新时间: 10/27/2022, 2:33:23 PM