var jsonObj = [
{
id: 1,
name: '首页',
path: '/dashboard',
children: []
},
{
id: 2,
name: '权限',
path: '/auth',
children: [
{
id: 3,
name: '角色',
path: '/auth/role',
children: [
]
}
]
}
]
var pathStr = '/auth/role/list'
有上面两个变量jsonObj和pathStr,如果在jsonObj中有path属性对应的值和pathStr相同的,那么就返回pathStr,如果没有相同的,就找和pathStr最接近的,比如在此例中最终返回的是'/auth/role'
心有法竹
繁华开满天机
相关分类