导航

navigator

解释:
页面链接

属性名类型默认值说明最低版本
targetStringself在哪个目标上发生跳转,默认当前小程序,可选值self/miniProgram2.5.2
urlString-应用内的跳转链接-
open-typeStringnavigate跳转方式-
deltaNumber-当 open-type 为 ‘navigateBack’ 时有效,表示回退的层数-
app-idString-当target=”miniProgram”时有效,要打开的小程序 App Key (小程序后台设置-开发设置中)2.5.2
pathString-当target=”miniProgram”时有效,打开的页面路径,如果为空则打开首页2.5.2
extra-dataObject-当target=”miniProgram”时有效,需要传递给目标小程序的数据,目标小程序可在 App.onLaunch(),App.onShow() 中获取到这份数据。详情2.5.2
versionversionrelease当target=”miniProgram”时有效,要打开的小程序版本,有效值 develop(开发版),trial(体验版),release(正式版),仅在当前小程序为开发版或体验版时此参数有效;如果当前小程序是正式版,则打开的小程序必定是正式版。2.5.2
hover-classStringnavigator-hover指定点击时的样式类,当hover-class="none"时,没有点击态效果
hover-stop-propagationBooleanfalse指定是否阻止本节点的祖先节点出现点击态-
hover-start-timeNumber50按住后多久出现点击态,单位毫秒-
hover-stay-timeNumber600手指松开后点击态保留时间,单位毫秒-
bindsuccessString-当target=”miniProgram”时有效,跳转小程序成功2.5.2
bindfailString-当target=”miniProgram”时有效,跳转小程序失败 (android暂无法给出失败回调)2.5.2
bindcompleteString-当target=”miniProgram”时有效,跳转小程序完成2.5.2

open-type 有效值:

说明最低版本
navigate对应 swan.navigateTo 的功能-
redirect对应 swan.redirectTo 的功能-
switchTab对应 swan.switchTab 的功能-
reLaunch对应 swan.reLaunch 的功能-
navigateBack对应 swan.navigateBack 的功能-
exit退出小程序,target=”miniProgram”时生效2.5.2

说明:navigator-hover 默认为:

  1. {
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0.7;
    }

<navigator/> 的子节点背景色应为透明色。示例在开发者工具中预览效果

  1. /** css **/
    /** 修改默认的navigator点击态 **/
    .navigator-hover {
    color:red;
    }
    /** 自定义其他点击态样式类 **/
    .other-navigator-hover {
    color:green;
    }

  1. <!-- navigator.swan -->
    <view class="swan-demo">
    <navigator url="/pages/navigate/navigate" hover-class="navigator-hover">跳转到新页面</navigator>
    <navigator url="/pages/detail/detail" open-type="redirect" hover-class="other-navigator-hover">在当前页打开</navigator>
    <navigator url="/pages/index/index" open-type="switchTab" hover-class="other-navigator-hover">切换 Tab</navigator>
    </view>

表单组件媒体组件