0

找不到页面 (404)
请求方法:GET
请求 URL: http ://chinafhp.sinaapp.com/search/?q=ag

网址模式:

urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'web.views.home', name='home'),
    # url(r'^web/', include('web.foo.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'^serach/$',views.serach),
    url(r'^admin/', include(admin.site.urls)),
    url(r'^$',views.home),

    url(r'^movie/([^/]+)/$',views.movieList),
    url(r'^tv/([^/]+)/$',views.tvList),
)

为什么?

4

2 回答 2

4

url(r'^serach/$',views.serach),

应该

url(r'^search/$',views.search),

于 2013-03-24T09:34:12.987 回答
1

似乎你在那里拼错了搜索词,但问题是你输入views.serach正确,因为 django 没有抱怨它,所以有一个serach明确的观点。

因此,如果您想访问您的网址,您可以:

http://chinafhp.sinaapp.com/serach/?q=ag
于 2013-03-24T10:16:14.487 回答