修复卡片检索到自己的BUG
This commit is contained in:
parent
c11eebdc5d
commit
83b21fa3e3
@ -2,8 +2,10 @@ function createCardSection(containerId, keyword) {
|
|||||||
fetch('/index.json')
|
fetch('/index.json')
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
|
// 筛选文章,排除掉 permalink 包含 /card/ 的内容
|
||||||
const filteredArticles = data.filter(article =>
|
const filteredArticles = data.filter(article =>
|
||||||
article.title.includes(keyword) || article.content.includes(keyword)
|
(article.title.includes(keyword) || article.content.includes(keyword)) &&
|
||||||
|
!article.permalink.includes('/card/')
|
||||||
).slice(0, 6); // 最多显示6篇文章
|
).slice(0, 6); // 最多显示6篇文章
|
||||||
|
|
||||||
const articlesContainer = document.getElementById(containerId);
|
const articlesContainer = document.getElementById(containerId);
|
||||||
@ -32,4 +34,4 @@ function createCardSection(containerId, keyword) {
|
|||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(error => console.error('Error loading articles:', error));
|
.catch(error => console.error('Error loading articles:', error));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user