gpt4 book ai didi

python - 评论中出现意外标记 ''

转载 作者:行者123 更新时间:2023-12-04 00:36:18 25 4
gpt4 key购买 nike

我是 Python 和 Flask 的新手,但我正在上课,对于我们的最终项目,我们将构建一个简单的站点。

我在我的 views.py 类中添加了一堆路由,但我终究无法理解其中的错误。错误标记后没有任何内容,所以我无法删除任何内容。如果我删除完整的评论,错误只会继续上升。不幸的是,我的 google-fu 背叛了我,因此我终于在这里注册了,而不是只是潜伏。

我将把完整的 views.py 作为一个 pastebin 发布:http://pastebin.com/Te6tkD7q

问题出现在第 92 行的 addToJson def 的注释之后。

# This function takes in a dictionary and writes those values to the specified database, in this case techDB.json

def addToJson (_dictionary): 检查数据()

with open(filename+".json", 'r+') as infile:
data = json.load(infile)
infile.close()
pass

data['techs'].append(_dictionary["techs"][0])

with open(filename+".json", "w") as outfile:
json.dump(data, outfile)
outfile.close()
pass

print("Technique has been added.")
pass

项目是在虚拟环境中使用 visual studio 和 Python 工具创建的(如果有的话)。

谢谢你的时间

最佳答案

第 89 行:

return jsonify(GetJsonTech(techname)

末尾缺少最后的结束符 ) 因此需要更改为

return jsonify(GetJsonTech(techname))

关于python - 评论中出现意外标记 '<newline>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41462834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com