快速体验
访问:XTools-H5-跳转相关
goNext 跳转下一页
基本使用
<view @click="$xtools.goNext('./new')">使用 $xtools.goNext 方法进入新页面</view>
Props
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|
唯一参数 | 需要跳转的地址,可以是相对地址也可以是绝对地址 | String | – | – |
goBack 返回上X页
基本使用
<view @click="$xtools.goBack()">使用 $xtools.goBack 方法返回</view>
Props
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|
num | 需要返回的页数 默认返回上一页 | number | 1 | – |
goTab 跳转tabar页面
基本使用
<view class="but " @click="$xtools.goTab('/pages/index/index')">使用 $xtools.goTab 方法跳转tabar页面</view>
Props
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|
url | 需要前往的页面地址 | String | – | – |
goAllClose 关闭所有页面,跳转到指定页面
基本使用
<view class="but " @click="$xtools.goAllClose('./new')">使用 $xtools.goAllClose 方法跳转</view>
Props
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|
url | 需要前往的页面地址 | String | – | – |
goClose 关闭当前页,跳转下一页
基本使用
<view class="but " @click="$xtools.goClose('./new')">使用 $xtools.goClose 方法跳转</view>
Props
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|
url | 需要前往的页面地址 | String | – | – |
暂无评论内容