该 API 使用方法为 wx.switchTab(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
url | string | - | 是 | 需要跳转的 tabBar 页面的路径 (代码包路径)(需在 app.json 的 tabBar 字段定义的页面),路径后不能带参数 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用成功的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
// app.json{"tabBar": {"list": [{"pagePath": "index","text": "首页"},{"pagePath": "other","text": "其他"}]}}
wx.switchTab({url: '/index'})
该 API 使用方法为 wx.reLaunch(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
url | string | - | 是 | 需要跳转的应用内非 tabBar 的页面的路径 (代码包路径),路径后可以带参数。参数与路径之间使用 ? 分隔,参数键与参数值用 = 相连,不同参数用 & 分隔;如 'path?key=value&key2=value2' |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
wx.reLaunch({url: 'test?id=1'})
该 API 使用方法为 wx.redirectTo(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
url | string | - | 是 | 需要跳转的应用内页面路径 (代码包路径),路径后可以带参数。参数与路径之间使用 ? 分隔,参数键与参数值用=相连,不同参数用& 分隔;如 'path?key=value&key2=value2' |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
wx.redirectTo({url: 'test?id=1'})
该 API 使用方法为 wx.navigateTo(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
url | string | - | 是 | 需要跳转的应用内非 tabBar 的页面的路径 (代码包路径), 路径后可以带参数。参数与路径之间使用 ? 分隔,参数键与参数值用 = 相连,不同参数用 & 分隔;如 'path?key=value&key2=value2' |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
wx.navigateTo({url: 'test?id=1',})//test.jsPage({onLoad: (option){console.log(option.query)}})
该 API 使用方法为 wx.navigateBack(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
delta | number | 1 | 否 | 返回的页面数,如果 delta 大于现有页面数,则返回到首页 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
// 注意:调用 navigateTo 跳转时,调用该方法的页面会被加入堆栈,而 redirectTo 方法则不会。见下方示例代码// 此处是 A 页面wx.navigateTo({url: 'B?id=1'})// 此处是 B 页面wx.navigateTo({url: 'C?id=1'})// 在 C 页面内 navigateBack,将返回 A 页面wx.navigateBack({delta: 2})
该 方法 使用方式为 EventChannel.emit(string eventName, any args)
该 方法 使用方式为 EventChannel.off(string eventName, EventCallback fn)
该 方法 使用方式为 EventChannel.on(string eventName, EventCallback fn)
该 方法 使用方式为 EventChannel.once(string eventName, EventCallback fn)
本页内容是否解决了您的问题?