请假JAVA问题,一后缀名为.json的文件如何修改,下面贴出源代码;

[{
text:'系统管理',
expanded: true,
children:[{
text:'用户管理',
id:'user-manage',
leaf:true
},{
text:'IP地址段设置',
id:'ipaddress-manage',
leaf:true
}]
},{
text:'日志管理',
expanded: true,
children:*/
},

{
text:'统计',
expanded: true,
children:[{
text:'用户统计',
id:'loguserquery-manage',
leaf:true
},{
text:'月统计',
id:'logdatequery-manage',
leaf:true
},{
text:'年统计',
id:'logmonthquery-manage',
leaf:true
/*}]*/
}]

}]

},
{
text:'系统配置',
expanded: true,
children:[/*{
text:'统计配置',
id:'config-manage',
leaf:true
},*/{

text:'ip导入',
id:'upload-manage',
leaf:true

}]

}

]
上面一段代码,我想将“日志管理”,“明细查询”,“分类查询”删除掉,但我删除后,执行代码在网页中就不显示了,请教如何修改才能正确显示?
最新回答
执手

2024-11-30 13:59:16

[{
text:'系统管理',
expanded: true,
children:[{
text:'用户管理',
id:'user-manage',
leaf:true
},{
text:'IP地址段设置',
id:'ipaddress-manage',
leaf:true
}]
},{
text:'',
expanded: true,
children:*/
},

{
text:'统计',
expanded: true,
children:[{
text:'用户统计',
id:'loguserquery-manage',
leaf:true
},{
text:'月统计',
id:'logdatequery-manage',
leaf:true
},{
text:'年统计',
id:'logmonthquery-manage',
leaf:true
/*}]*/
}]

}]

},
{
text:'系统配置',
expanded: true,
children:[/*{
text:'统计配置',
id:'config-manage',
leaf:true
},*/{

text:'ip导入',
id:'upload-manage',
leaf:true

}]

}

]

你贴上看看,没看见 明细查询 分类查询
追问
{
text:'日志管理',
expanded: true,
children:[{
text:'明细查询',
id:'logtimequery-manage',
leaf:true
},{
text:'分类查询',
id:'logopquery-manage',
leaf:true
/*}]*/
},
就在日志管理里的,不好意思,贴掉了,谢谢~
紫夜雪舞

2024-11-30 13:29:56

json每一个对花括号{}代表一个对象
{
text:'日志管理',
expanded: true,
children:[{
text:'明细查询',
id:'logtimequery-manage',
leaf:true
},{
text:'分类查询',
id:'logopquery-manage',
leaf:true
/*}]*/
},
你把上面这个作为一个整体删掉就好了
我不蛇蝎怎能毁你所爱

2024-11-30 08:46:18

这个是树啊,好像,你把ture先改成false试试