亲爱的兄弟们, 我非常喜欢 Django ORM,所以我试图在 Django 项目本身之外使用它。但是当我尝试使用它时遇到了问题。 这是我在 Mac 上的文件结构:
testORM
|-- orm
|-- __init__.py
|-- models.py
|-- manage.py
|-- settings.py
|-- test.py
这是我非常简单的代码:
模型.py:
from django.db import models
class test(models.Model):
name = models.CharField(max_length=50)
class Meta:
db_table='test'
app_label='orm'
管理.py:
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
设置.py:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'Portal', # Or path to database file if using sqlite3.
'USER': 'postgres', # Not used with sqlite3.
'PASSWORD': 'Cloud', # Not used with sqlite3.
'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '5432', # Set to empty string for default. Not used with sqlite3.
}
}
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# In a Windows environment this must be set to your system time zone.
TIME_ZONE = 'America/Chicago'
INSTALLED_APPS = (
'orm',
)
测试.py:
import sys
sys.path.append('/Users/wally/Documents/workspace/testORM')
sys.path.append('/Users/wally/Documents/workspace/testORM/orm')
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
from django.core.management import setup_environ
import settings
setup_environ(settings)
这是我尝试从 Eclipse 执行 test.py 时得到的结果:
Traceback (most recent call last):
File "/Users/wally/Documents/workspace/testORM/test.py", line 14, in <module>
setup_environ(settings)
File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 433, in setup_environ
import_module(project_name)
File "/Library/Python/2.7/site-packages/django/utils/importlib.py", line 35, in import_module
__import__(name)
ImportError: No module named testORM
但是当我尝试执行时
python manage.py shell
from django.db import connection
cursor = connection.cursor()
他们都从命令行工作正常!!!即使我创建模型的对象并保存数据也可以正常工作,通过 shell 一切正常。
- 但是当我尝试从 test.py 执行它们时,我无法弄清楚为什么它不起作用。我只是没有开始在test.py中做任何事情,只是导入设置。
- 我在网上搜索,有人通过将项目的路径添加到“sys.path”来解决问题,如您所见,我做到了,添加了硬编码的完整路径。但是还是不行...
- 有人会遇到这种情况吗?如果有人可以提供帮助,我将不胜感激。预先感谢。
- 注意:我在我的 Mac(v10.8) 上使用 python2.7 和 Django1.4