新增朋友圈作者筛选;新增前台登入登出;深度优化

This commit is contained in:
anian
2026-03-15 18:05:44 +08:00
parent b387ea885c
commit e716097e07
19 changed files with 2632 additions and 1633 deletions
-2
View File
@@ -236,7 +236,6 @@
// 检查是否有解析错误
const parseError = xmlDoc.getElementsByTagName("parsererror");
if (parseError.length > 0) {
console.error("[RSS Debug] XML 解析失败", parseError[0].textContent);
listBox.innerHTML = '<div style="color:#f56c6c;">XML 解析错误</div>';
return;
}
@@ -265,7 +264,6 @@
listBox.innerHTML = htmlContent || '<div style="color:#999;">暂无更新内容</div>';
} catch (error) {
console.error('[RSS Debug] 请求发生异常:', error);
listBox.innerHTML = `<div style="color:#f56c6c;font-size:14px;">请求失败: ${error.message}</div>`;
}
}