AppEngine 上 myapp/static 中文件的路径是什么
当项目在 Google appengine 上启动时(我使用的是 django-nonrel),我想将基于 .csv 文件(称为 info.csv)信息的对象添加到我的模型中。
我的做法是在myapp中写一个专门的util.py,在view.py
中调用。 util.py
应该读取 info.csv
并启动数据库中的对象。
但是,它给出了“没有这样的文件或目录:...”错误。将文件放入 myapp/static 文件夹
会导致其他问题。
我该怎么办?有没有更聪明的方法来解决这个问题?非常感谢!
I want to add objects based on information of a .csv file (call it info.csv) to my models when the project is initiated on Google appengine (I'm using django-nonrel).
My approach is to write a dedicated util.py in myapp, which is called in view.py
. util.py
is supposed to read info.csv
and initiate objects in the databse.
However, it gives "No such file or directory: ...
" error. Putting the file in myapp/static folder
causes other problem.
How do I go about this? Is there more clever way to tackle this problem? Thanks so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参考此处
要访问您的文件,请将其保存在脚本的同一目录并通过如下方式访问它:
Reference here
To access your file, save it in the same directory of your script and access it through something like this:
我也看到并使用了这种设计模式:
在config.py中:
在views.py中:
I have also seen and used this design pattern:
in config.py:
in views.py: