4

私はdjangoが初めてで、学習中です。いくつかのチュートリアルの演習を行っているときに、助けが必要ないくつかのエラーに遭遇しました。

エラー: /blog で ImportError が発生しました。urls という名前のモジュールがありません

「blog」という名前のアプリの下にある urls.py ファイルは、

from django.conf.urls.defaults import patterns, include, url
from mysite.blog.views import archive

urlpatterns = patterns('',
    url(r'^$',archive),
                       )

「blog」という名前のアプリの下にある views.py ファイルは、

# Create your views here.
from django.template import loader, Context
from django.http import HttpResponse
from mysite.blog.models import Blogpost

def archive(request):
    posts = BlogPost.objects.all()
    t = loader.get_template("archive.html")
    c = context({'posts': posts })
    return HttpResponse(t.render(c))

プロジェクト「mysite」の下のurls.pyファイルは

from django.conf.urls import patterns, include, url

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
# Examples:
# url(r'^$', 'mysite.views.home', name='home'),
url(r'^blog/', include('mysite.blog.urls')),

# Uncomment the admin/doc line below to enable admin documentation:
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
)

トレースバック:

File "D:\Super Developer\Python\lib\site-packages\django\core\handlers\base.py" in get_response
  89.                     response = middleware_method(request)
File "D:\Super Developer\Python\lib\site-packages\django\middleware\common.py" in process_request
  67.             if (not urlresolvers.is_valid_path(request.path_info, urlconf) and
File "D:\Super Developer\Python\lib\site-packages\django\core\urlresolvers.py" in is_valid_path
  531.         resolve(path, urlconf)
File "D:\Super Developer\Python\lib\site-packages\django\core\urlresolvers.py" in resolve
  420.     return get_resolver(urlconf).resolve(path)
File "D:\Super Developer\Python\lib\site-packages\django\core\urlresolvers.py" in resolve
  298.             for pattern in self.url_patterns:
File "D:\Super Developer\Python\lib\site-packages\django\core\urlresolvers.py" in url_patterns
  328.         patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "D:\Super Developer\Python\lib\site-packages\django\core\urlresolvers.py" in urlconf_module
  323.             self._urlconf_module = import_module(self.urlconf_name)
File "D:\Super Developer\Python\lib\site-packages\django\utils\importlib.py" in import_module
  35.     __import__(name)

Exception Type: ImportError at /blog
Exception Value: No module named urls

プロジェクト/アプリの構造:

  1. 私のサイト
    • 管理.py
    • 初期化.py
    • 設定.py
    • urls.py
    • wsgi.py
    • ブログ
      • 初期化.py
      • models.py
      • ビュー.py
      • urls.py
      • tests.py
      • テンプレート - archive.html

Python パス

['D:\Super Developer\Proj\mysite', 'C:\Windows\system32\python27.zip', 'D:\Super Developer\Python\DLLs', 'D:\Super Developer\Python\lib', 「D:\Super Developer\Python\lib\plat-win」、「D:\Super Developer\Python\lib\lib-tk」、「D:\Super Developer\Python」、「D:\Super Developer\Python」 \lib\site-packages']

4

8 に答える 8

1

ブログの urls.py で、インポートします

from django.conf.urls.defaults import patterns, include, url

しかし、プロジェクトの urls.py では、

from django.conf.urls import patterns, include, url

これはインデントされていますか?後者は、少なくとも私の環境では失敗するようです。

于 2012-06-25T16:08:50.550 に答える
1

を使用して、アプリの URL ファイルでメディアまたは静的 URL の宣言を行ったかどうかを確認します。

url(r'^media/(?P<path>.*)$', 'django.views.static.serve'
, {'document_root': settings.MEDIA_ROOT}
  ),

アプリケーションの url ファイルの代わりに。

私は同じ問題を抱えていましたが、これを変更したところ、問題はなくなりました。

于 2012-12-05T17:02:59.877 に答える
0

ブログ フォルダーに__ init __.pyファイルがない可能性があります。

于 2012-06-25T09:46:22.013 に答える
0

patterns最後の要素の後にコンマを含めることはできないと思います:

urlpatterns = patterns('',
    url(r'^$',archive), <-- delete this comma
)

そこに例外が発生していない場合は、manage.py shellandも実行してみてくださいimport blog.urls

于 2012-06-25T16:35:50.093 に答える
0

これを与えてみてください:

url(r'^blog/', include('mysite.urls')),
于 2012-10-27T06:23:31.267 に答える
0

Django 1.6 以降を使用しているようです。フレームワークのいくつかの変更により、このコードは機能しません。ブログの urls.py で 1.5 またはこのコードを使用します。

    from django.conf.urls import patterns, include, url
    from blog import views

    urlpatterns = patterns('',
        url(r'^$', views.archive),
    )

そしてこれはviews.pyにあります:

    from django.template import loader, Context
    from django.http import HttpResponse
    from blog import models 

    def archive(request):
        posts = models.BlogPost.objects.all()
        t = loader.get_template('archive.html')
        c = Context({ 'posts': posts })
        return HttpResponse(t.render(c))
于 2014-07-09T11:47:25.747 に答える
0

私の友人は、いくつかの django チュートリアルを行っていて、同じエラーが発生しました。彼が犯した間違いは、ファイル構造にありました。新しいバージョンの django では、たとえば mysite/mysite のように 2 つのディレクトリ レベルが作成され、ブログ フォルダーを mysite/mysite/blog ではなく mysite/blog に配置しようとしました。その変更を行った後、すべてがうまく機能しているように見えました。あなたの構造を見て、それが役立つことを願っています。

于 2013-04-20T20:45:21.387 に答える