您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍“微信小程序的navigator怎么用”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“微信小程序的navigator怎么用”文章能帮助大家解决问题。
页面链接。
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
url | String | 应用内的跳转链接 | |
open-type | String | navigate | 跳转方式 |
delta | Number | 当 open-type 为 'navigateBack' 时有效,表示回退的层数 | |
hover-class | String | navigator-hover |
指定点击时的样式类,当hover-class="none" 时,没有点击态效果 |
hover-start-time | Number | 50 | 按住后多久出现点击态,单位毫秒 |
hover-stay-time | Number | 600 | 手指松开后点击态保留时间,单位毫秒 |
open-type 有效值:
值 | 说明 | 最低版本 |
---|---|---|
navigate |
对应wx.navigateTo 的功能 | |
redirect |
对应wx.redirectTo 的功能 | |
switchTab |
对应wx.switchTab 的功能 | |
reLaunch |
对应wx.reLaunch 的功能 | 1.1.0 |
navigateBack |
对应wx.navigateBack 的功能 | 1.1.0 |
注:navigator-hover
默认为{background-color: rgba(0, 0, 0, 0.1); opacity: 0.7;}
, <navigator/>
的子节点背景色应为透明色
示例代码:
/** wxss **//** 修改默认的navigator点击态 **/.navigator-hover {color:blue; }/** 自定义其他点击态样式类 **/.other-navigator-hover {color:red; }
<!-- sample.wxml --><view class="btn-area"> <navigator url="/page/navigate/navigate?title=navigate" hover-class="navigator-hover">跳转到新页面</navigator> <navigator url="../../redirect/redirect/redirect?title=redirect" open-type="redirect" hover-class="other-navigator-hover">在当前页打开</navigator> <navigator url="/page/index/index" open-type="switchTab" hover-class="other-navigator-hover">切换 Tab</navigator></view>
<!-- navigator.wxml --><view style="text-align:center"> {{title}} </view><view> 点击左上角返回回到之前页面 </view>
<!-- redirect.wxml --><view style="text-align:center"> {{title}} </view><view> 点击左上角返回回到上级页面 </view>
// redirect.js navigator.jsPage({ onLoad: function(options) {this.setData({ title: options.title }) } })
关于“微信小程序的navigator怎么用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。