1

django + wsgi でこの問題が発生していますが、その理由がわかりません。apache2 + wsgi で実行されているローカル Web サイトにアクセスすると、次のエラーが発生します。

ImportError at /
No module named models

しかし、開発サーバーで実行すると、すべて問題ありません: python manage.py runserver 0:8080.

私の wsgi.py :

import os, sys

sys.path.append('/var/www/reader')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "reader.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

私のモデル.py

from django.db import models
from django.contrib.auth.models import User

class Feed(models.Model):
    display_name = models.CharField(max_length=255)
    link_feed = models.CharField(max_length=255)
    user = models.ForeignKey(User)

エラーがスローされた私のviews.py:

from django.shortcuts import render
from reader.models import Feed

def index(request):
    feeds_list = Feed.objects.all()
    context = {'feeds_list': feeds_list}
    return render(request, 'home/index.html', context)

そして私の設定では:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
    # 'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
    'reader', <-- this is my app
)

Python 2.7.4 と django 1.5.1 で実行しています。

誰かが私に理由を説明してもらえますか?

更新 1:

jeremy@dev:/var/www/reader$ tree .
.
├── manage.py
└── reader
    ├── __init__.py
    ├── models.py
    ├── reader.settings
    ├── settings.py
    ├── static
    │   ├── images
    │   ├── scripts
    │   │   └── script.js
    │   └── styles
    │       └── style.css
    ├── templates
    │   ├── base.html
    │   ├── home
    │   │   └── index.html
    │   └── subscription
    │       └── add.html
    ├── urls.py
    ├── views.py
    └── wsgi.py

8 directories, 13 files
4

1 に答える 1

0

__init__.pyプロジェクトのアプリリーダーにファイルがあることを確認してください

project/
-- reader/
---- __init__.py 
---- models.py
---- views.py

ヘルプのデバッグ

インストールしていtreeますか?

そうでない場合brew install treeまたはapt-get install tree(開発環境のフレーバーに合わせて変更してください。)

走る

cd ~/path/to/djangoproject
tree .

出力を一番上に貼り付けて、何が起こっているのかをよりよく理解できるようにします。

francis at Kraken.local  ~/Sites/yaconiello/blog on francis*
$ tree .
.
├── __init__.py
├── __init__.pyc
├── admin
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── article.py
│   ├── article.pyc
│   ├── category.py
│   └── category.pyc
├── feeds
│   ├── __init__.py
│   ├── category.py
│   └── latest.py
├── migrations
│   ├── 0001_initial.py
│   ├── 0001_initial.pyc
│   ├── 0002_auto__add_field_article_excerpt.py
│   ├── 0002_auto__add_field_article_excerpt.pyc
│   ├── __init__.py
│   └── __init__.pyc
├── models
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── article.py
│   ├── article.pyc
│   ├── category.py
│   ├── category.pyc
│   ├── request.py
│   └── vote.py
├── signals.py
├── signals.pyc
├── templates
│   └── blog
│       ├── article
│       │   ├── category_archive.html
│       │   ├── date_archive.html
│       │   ├── index.html
│       │   └── single.html
│       ├── base.html
│       ├── emails
│       │   └── new_comment.html
│       ├── feeds
│       │   └── description.html
│       └── snippets
│           └── article_list.html
├── templatetags
│   ├── __init__.py
│   ├── __init__.pyc
│   ├── blogs.py
│   └── blogs.pyc
├── urls.py
├── urls.pyc
└── views
    ├── __init__.py
    ├── __init__.pyc
    ├── article.py
    └── article.pyc

12 directories, 45 files

アップデート

あなたのプロジェクトはリーダーです。そのreaderフォルダーはアプリレベルではなくプロジェクトレベルのフォルダーです。プロジェクト レベルのモデルやビューを持つべきではありません。アプリを作成し、モデルとビューをそこに移動します。参照: https://stackoverflow.com/a/2610797/884453

さらにreader/reader/models.py、パス上にプロジェクト フォルダーがある可能性が高いため、存在しない可能性がありますがreader.models、存在するにreader.reader.models違いありません。

于 2013-05-16T18:03:58.860 に答える