Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须 python 文件创建和读取文件中的文本.txt,为了让它们工作,他们需要知道.txt文件内部的信息。
.txt
在 heroku 中,我有一个调度程序,它运行一个文件,然后运行另一个文件。最大的问题是文件每次都从原始仓库重置为它们的状态。我怎样才能解决这个问题?
Heroku 不提供持久文件系统。您需要将它们存储在另一个服务(如 S3)中,或者根据文件的内容,重新设计以从数据库中写入和读取。