json写入支持中文字符
json写入支持中文字符
This commit is contained in:
parent
d1ac0379c6
commit
b1a2f45484
@ -97,8 +97,8 @@ def save_json(filename: str, data: dict):
|
|||||||
Save data into json file in temp path.
|
Save data into json file in temp path.
|
||||||
"""
|
"""
|
||||||
filepath = get_file_path(filename)
|
filepath = get_file_path(filename)
|
||||||
with open(filepath, mode='w+') as f:
|
with open(filepath, mode='w+',encoding = 'UTF-8') as f:
|
||||||
json.dump(data, f, indent=4)
|
json.dump(data, f,sort_keys=True,indent =4,ensure_ascii=False)
|
||||||
|
|
||||||
|
|
||||||
def round_to(value: float, target: float):
|
def round_to(value: float, target: float):
|
||||||
|
Loading…
Reference in New Issue
Block a user