摘要: 二、知识点总结When themodel query APIsdon’t go far enough, you can fall back to writing raw SQL.go far enough:远远不够fall back to:求助raw:原始的,未加工的Django提供两种方式执行(p... 阅读全文
posted @ 2015-04-16 17:05 成风魄郎 阅读(1549) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python#coding:utf-8from django.shortcuts import render;from django.shortcuts import render_to_response;from django.http import HttpResponse... 阅读全文
posted @ 2015-04-16 14:37 成风魄郎 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1 无参数情况配置URL及其视图如下:1234(r'^hello/$', hello)def hello(request): return HttpResponse("Hello World")访问http://127.0.0.1:8000/hello,输出结果为“Hello World”2 ... 阅读全文
posted @ 2015-04-16 14:35 成风魄郎 阅读(352) 评论(0) 推荐(0) 编辑