gpt4 book ai didi

python - 在 flask 中规避 "Resources can only be opened for reading"

转载 作者:行者123 更新时间:2023-11-28 22:58:28 25 4
gpt4 key购买 nike

使用 app.open_resource('foobar.txt', 'w') 在 flask 中生成错误 Resources can only be opened for reading

有没有办法打开一个资源来写入它?

如果没有,你能不能用flask获取资源的路径,然后我手动打开并写入。

最佳答案

这应该有效:

import os
f = open(os.path.join(app.root_path, 'foobar.txt'), 'w')

这样更方便:

import os
with open(os.path.join(app.root_path, 'foobar.txt'), 'w') as f:
...

关于python - 在 flask 中规避 "Resources can only be opened for reading",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13778330/

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