你好,我正在尝试在django中使用GAE,但我遇到了一个问题。我使用了测试应用程序,并创建了一个新应用程序。让我们使用命令manage.py startapp test来测试它。
然后,我创建了一些模型,并尝试使用命令manage.py sql test。
问题是它不工作,给了我这个。
WARNING 2011-05-26 21:15:19,855 datastore_file_stub.py:657] Could not read datastore data
from C:\Users\faust\Desktop\appdja\project\django-testapp\.gaedata\datastore有人能帮我解决这个问题吗?
发布于 2011-05-30 23:57:38
这不是一个错误,这是一个警告。假设您的模型是正确的,那么在您实际将某些内容存储到后端之后(也就是填充您的.gaedata\datastore的时候),消息就会消失。
https://stackoverflow.com/questions/6143952
复制相似问题