摘要:
二、知识点总结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... 阅读全文
摘要:
#!/usr/bin/python#coding:utf-8from django.shortcuts import render;from django.shortcuts import render_to_response;from django.http import HttpResponse... 阅读全文
摘要:
1 无参数情况配置URL及其视图如下:1234(r'^hello/$', hello)def hello(request): return HttpResponse("Hello World")访问http://127.0.0.1:8000/hello,输出结果为“Hello World”2 ... 阅读全文