赞
踩
注释很详细,直接上代码
新增内容:
1.使用覆盖函数的方法阻止原页面的自动执行方法
2.使用判断实现只有当未登录时才进行方法覆盖
源码:
app.json
{
"pages": [
"pages/index/index",
"pages/logs/logs"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "Weixin",
"navigationBarBackgroundColor": "#ffffff"
},
"usingComponents": {
"auth":"/Components/auth/auth"
},
"componentFramework": "glass-easel",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents"
}
auth组件
auth.wxml
<slot wx:if="{{isLoad}}"></slot>
auth.json
{
"component": true,
"usingComponents": {}
}
auth.js
// Components/auth/auth.js
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {//这里的设置模拟页面内容不出现的情况
isLoad:true
},
//覆盖使用的方法
attached(){
if(this.data.isLoad==false){//当鉴权组件检测到未登录时覆盖
//获取当前页面栈数组
const pages=getCurrentPages()
//获取当前页面实例
const page=pages[pages.length-1]
//箭头写法要注意
page.onLoad=()=>{
console.log("1.已覆盖onLoad方法")
},
page.onShow=()=>{
console.log("2.已覆盖onShow方法")
},
page.onReady=()=>{
console.log("3.已覆盖onReady方法")
}
}
},
/**
* 组件的方法列表
*/
methods: {
}
})
index.wxml
<auth>当登入状态为false时才会显示</auth>
index.js
Page({
onLoad(){
console.log('声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/261782
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。