修复:loadWhispers 加 Accept: application/json header

- 确保控制器返回 JSON 而不是 HTML 视图
- 解决名片弹窗查看私聊报网络异常的问题
This commit is contained in:
2026-02-27 00:07:36 +08:00
parent add92488a6
commit fc09a6b895

View File

@@ -221,7 +221,9 @@
async loadWhispers() {
try {
const res = await fetch('/command/whispers/' + encodeURIComponent(this.userInfo.username));
const res = await fetch('/command/whispers/' + encodeURIComponent(this.userInfo.username), {
headers: { 'Accept': 'application/json' }
});
const data = await res.json();
if (data.status === 'success') {
this.whisperList = data.messages;