一切福田,不離方寸,從心而覓,感無不通。

js 的forEach不支持continue解决

break—-用return false;

continue --用return true;

代码如下:

Object.keys(flatMenuData).forEach((key) => {

if (item.routeName === this.$route.name && !rs.activeItem) {

//如果开启了首页不展示左侧菜单,则屏蔽左侧菜单

if(this.inner_sideMenu.opt.notActiveIndex){

if(this.$route.name ==’index'){

return true

}

}

}

}
————————————————
版权声明:本文为CSDN博主「CarryBest」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/carrybest/article/details/89000582