From de5fe00209aec00a031029a38e8913a2b17ecc3e Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 5 Oct 2023 13:45:29 +0800 Subject: [PATCH] :bug: fix https://github.com/siyuan-note/siyuan/issues/9343 --- app/src/window/openNewWindow.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/src/window/openNewWindow.ts b/app/src/window/openNewWindow.ts index 7427482df..e268f6d46 100644 --- a/app/src/window/openNewWindow.ts +++ b/app/src/window/openNewWindow.ts @@ -26,7 +26,8 @@ export const openNewWindow = (tab: Tab, options: windowOptions = {}) => { width: options.width, height: options.height, id: getCurrentWindow().id, - url: `${window.location.protocol}//${window.location.host}/stage/build/app/window.html?v=${Constants.SIYUAN_VERSION}&json=${JSON.stringify(json)}` + // 需要 encode, 否则 https://github.com/siyuan-note/siyuan/issues/9343 + url: `${window.location.protocol}//${window.location.host}/stage/build/app/window.html?v=${Constants.SIYUAN_VERSION}&json=${encodeURIComponent(JSON.stringify(json))}` }); /// #endif tab.parent.removeTab(tab.id); @@ -66,7 +67,7 @@ export const openNewWindowById = (id: string, options: windowOptions = {}) => { width: options.width, height: options.height, id: getCurrentWindow().id, - url: `${window.location.protocol}//${window.location.host}/stage/build/app/window.html?v=${Constants.SIYUAN_VERSION}&json=${JSON.stringify(json)}` + url: `${window.location.protocol}//${window.location.host}/stage/build/app/window.html?v=${Constants.SIYUAN_VERSION}&json=${encodeURIComponent(JSON.stringify(json))}` }); /// #endif }); @@ -81,7 +82,7 @@ export const openNewWindowById = (id: string, options: windowOptions = {}) => { width: options.width, height: options.height, id: getCurrentWindow().id, - url: `${window.location.protocol}//${window.location.host}/stage/build/app/window.html?v=${Constants.SIYUAN_VERSION}&json=${JSON.stringify(json)}` + url: `${window.location.protocol}//${window.location.host}/stage/build/app/window.html?v=${Constants.SIYUAN_VERSION}&json=${encodeURIComponent(JSON.stringify(json))}` }); /// #endif }