在我的 sqlite 数据库表中,有一个树形结构的 JSON 数据字段,它大概长这样,现在我想通过 title
关键字做查询筛选,请问有什么好的方法吗?
[
{
id: '100',
title: 'Frontend',
children: [
{
id: '110',
title: 'React',
children: [
{
id: '111',
title: 'React Hooks',
},
{
id: '112',
title: 'React Router',
},
],
},
{
id: '120',
title: 'Vue',
children: [
{
id: '121',
title: 'Vue Router',
},
{
id: '122',
title: 'Vuex',
},
],
},
],
},
{
id: '200',
title: 'Backend',
children: [
{
id: '210',
title: 'Java',
},
{
id: '220',
title: 'Rust',
},
],
},
]
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.