7
2012
在djangotest1目录下创建文件first.py
#!/usr/bin/python
from django.http import HttpResponse
def index(request):
”’this is test first python”’
return HttpResponse(“this is the first python.”)
return HttpResponse(“this is the first python.”)
修改urls.py文件
在末尾添加:
urlpatterns += patterns( #此处使用+=的方式,在原有基础上添加urlpatterns,这种方法便于分开自定义的url块
#在多个不同类型中,可以更快的定位到自定义的url,个人较中意这种方式
)
现在刷新页面,可看到页面显示内容
本文连接地址: http://www.fresker.com/old2/archives/515 (转载注明出处)
目前暂无评论