- 论坛徽章:
- 0
|
今天出学Django,在工作目录mysite下建了一个testapp的子目录,想测试下,写了个hello.py:
from django.http import HttpResponse
def index(request):
return HttpResponse("hello,Django")
然后把urls改了一下:
from django.conf.urls.defaults import *
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
(r"^$","mysite.testapp.hello.index")
)
然后我在本地 http://localhost:8000/ 查看时
却说没有testapp.hello这个模块
我把hello.py提出来放到mysite下面后把urls里面的改成mysite.hello.index 就可以正常访问了
难道不能访问子目录吗?还是我那样写不对?我看了下官方的 http://docs.djangoproject.com/en/dev/topics/http/urls/?from=olddocs 也没看到相关介绍(或者是没看到。。=。=)
请教高手指导 |
|