python tkinter 没有更新 json 文件

python tkinter not updating json file

我正在学习如何更新、写入和读取 python 中的 json 个文件。

当我使用异常处理更新我的 json 文件时,出现错误:

Exception in Tkinter callback Traceback (most recent call last):  
File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/tkinter/__init__.py",
line 1921, in __call__
    return self.func(*args)   File "/Users/montekkundan/Downloads/coding/python/password-manager/main.py",
line 53, in save
    data = json.load(data_file)   File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/json/__init__.py",
line 293, in load
    return loads(fp.read(),   File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/json/__init__.py",
line 346, in loads
    return _default_decoder.decode(s)   File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/json/decoder.py",
line 337, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())   File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/json/decoder.py",
line 355, in raw_decode
    raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

Process finished with exit code 0

python 函数:

def save():
    website = website_entry.get()
    email = email_entry.get()
    password = password_entry.get()
    new_data = {
        website: {
            "email": email,
            "password": password,
        }
    }

    if len(website) == 0 or len(password) == 0:
        messagebox.showerror(title="Oops!", message="Please make sure you haven't left any fields empty.")

    else:
        
        try:
            with open("data.json", "r") as data_file:
                # Reading old data
                data = json.load(data_file)
        except FileNotFoundError:
            with open("data.json", "w") as data_file:
                json.dump(new_data, data_file, indent=4)
        else:
            # Updating old data with new data
            data.update(new_data)

            with open("data.json", "w") as data_file:
                # Saving updated data
                json.dump(data, data_file, indent=4)
        finally:
            website_entry.delete(0, END)
            password_entry.delete(0, END)

检查文件中的内容 - 它似乎是空的。
空 file/string 是不正确的 JSON 并且会引发错误。

当找不到文件或无法读取文件时,您应该创建新的空字典 data

try:
    with open("data.json", "r") as data_file:
        # Reading old data
        data = json.load(data_file)
except FileNotFoundError:
    print("Problem: FileNotFoundError")
    data = dict()
except json.JSONDecodeError:
    print("Problem: JSONDecodeError")
    data = dict()

finally:
    
    # --- always ---
    
    data.update(new_data)
    
    with open("data.json", "w") as data_file:
        # Saving updated data
        json.dump(data, data_file, indent=4)
    
    website_entry.delete(0, END)
    password_entry.delete(0, END)