# getPath

获得当前 weex 页面的路径,

# 请求参数

N/A

# 接口调用示例

this.$bridge.getPath().then(res => {
    this.$alert(res)
})
1
2
3

# 返回参数

Prop Type value Description
weexPath String xxxx 当前weex页面的路径

# 返回示例

//示例
{
  weexPath: 'https://xxx/demo/weex.js'
}
1
2
3
4
Last Updated: 2/26/2024, 10:41:18 AM