From ad17b905c4889facecb3fd29e3a8f73d4aae2813 Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Sun, 23 Nov 2025 20:03:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DToolFile=E4=B8=ADSaveAsJson?= =?UTF-8?q?=E7=9A=84=E4=B8=80=E4=BA=9B=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/File.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/File.py b/Runtime/File.py index 5adfbec..c9ef58c 100644 --- a/Runtime/File.py +++ b/Runtime/File.py @@ -327,7 +327,7 @@ class ToolFile(BaseModel): except: pass with open(self.OriginFullPath, 'w', encoding='utf-8') as f: - json.dump(json_data, f, indent=4) + json.dump(json_data, f, indent=4, ensure_ascii=False) return self def SaveAsCsv(self, csv_data:"pd.DataFrame"): '''