django中将数据导入至数据库

因为django的数据库管理使用的是orm模式,所以导入数据到django数据库中,编码上是很简单的,这里主要说明一下导入过程中要注意的几个地方

1.需要将django应用程序的根目录(也就是manager.py所在的目录)加入到你的sys.path中,否则找不到其他内容

2.在你的代码初始化中增加from testapp.wsgi import * ,这个会初始化django的环境

3.初始化模型的导入from testapp.models import *,这个地方最好是这么写,如果写成 from models import (A,B,C)可能会导致不调用__init__.py初始化,对于定制app内容的会报错。

如下:

django.core.exceptions.ImproperlyConfigured: Unable to detect the app label for model "VersionData." Ensure that its module, "models", is located inside an installed app.

因为我的testapp定制了app的名称等属性,所以这么导入会有问题的


你可能感兴趣的:(django)