edgebitllc 最近的时间轴更新
edgebitllc

edgebitllc

V2EX 第 715558 号会员,加入于 2024-10-17 17:15:04 +08:00
今日活跃度排名 12957
edgebitllc 最近回复了
@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   ·   实用小工具   ·   5329 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 08:41 · PVG 16:41 · LAX 00:41 · JFK 03:41
Developed with CodeLauncher
♥ Do have faith in what you're doing.