我有一個博客應用程序和應用程序有一個urls.py,其中包括通用視圖怎麼能發送blog.urls我的主要
urlpatterns = patterns("",
url(r'^', ListView.as_view(
queryset=Post.objects.all().order_by("-created")[:2],
template_name='index.html')),
)
我送2點的數據。
在主體工程urls.py這樣的:
urlpatterns = patterns("",
url(r"^$", direct_to_template, {"template": "index.html"}, name="home"),
url(r"^admin/", include(admin.site.urls)),
url(r"^blog/", include('blog.urls')),
)
我可以看到從數據庫中檢索DATAS 127.0.0.1/blog/我也想看看在127.0.0.1我的意思是在開始頁。 我加這個:
url(r"^$", include('blog.urls), direct_to_template, {"template": "index.html"}, name="home"),
但是不行。我怎樣才能做到這一點?
我覺得'url(r「^ $」,include('blog.urls))'就夠了。 –