V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  edgebitllc  ›  全部回复第 1 页 / 共 1 页
回复总数  2
@hhdhhd 谢谢宝贵建议。 我理解是打开本地书签下的某个目录所有书签是吗?

如果能描述一下具体的使用场景更好了, 不胜感激!
@simonmao 谢谢支持, 站点数据用数组存储, 在内存中遍历非常快的。核心代码
```typescript
// 搜索站点,保留 section 结构
const filteredSites: { [sectionId: string]: NavigationItemType[] } = {};
pages.forEach((page, pageIndex) => {
page.forEach(section => {
const matchedSites = section.items.filter(site =>
site.title.toLowerCase().includes(query) || site.url?.toLowerCase().includes(query)
);
if (matchedSites.length > 0) {
filteredSites[section.id] = matchedSites;
}
});
});
```
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2508 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 15:48 · PVG 23:48 · LAX 07:48 · JFK 10:48
Developed with CodeLauncher
♥ Do have faith in what you're doing.