如何存储和访问,GAE /tmp 到 Django html?
How to store in and access from , GAE /tmp to Django html?
我发现这个 link 说我们可以使用 /tmp 在 Google App Engine 中为我们的实例存储文件。
https://cloud.google.com/appengine/docs/standard/python3/using-temp-files
但问题是
1) 如何存储到 \tmp 文件夹,是将保存路径写为 = "\tmp" 还是其他
2) 我将如何访问存储在我的 django html 页面的 \tmp 文件夹中的那些文件,目前我可以使用 {% static %}
标签
访问静态文件
正在回答您的问题。
- 是的,你只是把路径写成你说的
\tmp
。正如您提供的文档所告知的那样,您应该使用标准函数来编写这些文件,所以您应该可以开始了。
- 您需要阅读它们,就像您需要应用程序中的任何其他文件一样。方法和功能是一样的,你应该是一样的路径。
除此之外,我想给您一些可能对您有用的建议(以防您还不知道)。如文档中所述 Using Cloud Storage:
App Engine creates a default bucket when you create an app. This bucket provides the first 5GB of storage for free and includes a free quota for Cloud Storage I/O operations. You can create other Cloud Storage buckets, but only the default bucket includes the first 5GB of storage for free.
所以,这意味着您可以使用这个免费存储桶来访问这些您想要设置在临时文件中的文件,以便更轻松地管理文件。您可以访问有关其他 .
的更多信息
如果这些信息对您有帮助,请告诉我!
我发现这个 link 说我们可以使用 /tmp 在 Google App Engine 中为我们的实例存储文件。 https://cloud.google.com/appengine/docs/standard/python3/using-temp-files
但问题是
1) 如何存储到 \tmp 文件夹,是将保存路径写为 = "\tmp" 还是其他
2) 我将如何访问存储在我的 django html 页面的 \tmp 文件夹中的那些文件,目前我可以使用 {% static %}
标签
正在回答您的问题。
- 是的,你只是把路径写成你说的
\tmp
。正如您提供的文档所告知的那样,您应该使用标准函数来编写这些文件,所以您应该可以开始了。 - 您需要阅读它们,就像您需要应用程序中的任何其他文件一样。方法和功能是一样的,你应该是一样的路径。
除此之外,我想给您一些可能对您有用的建议(以防您还不知道)。如文档中所述 Using Cloud Storage:
App Engine creates a default bucket when you create an app. This bucket provides the first 5GB of storage for free and includes a free quota for Cloud Storage I/O operations. You can create other Cloud Storage buckets, but only the default bucket includes the first 5GB of storage for free.
所以,这意味着您可以使用这个免费存储桶来访问这些您想要设置在临时文件中的文件,以便更轻松地管理文件。您可以访问有关其他
如果这些信息对您有帮助,请告诉我!