- 浏览: 2567 次
- 性别:
- 来自: 威海
最新评论
文章列表
刚刚注意到,js的break和continue也是支持标号的。
label : while(true)
{
alert("once");
while(true)
{
break label;
}
}
var condition = true;
label : while(condition )
{
alert("once");
while(true)
{
condition = false;
continue labe ...
受不了x软的工作了,开始学习Django1.2。记下知识点。
Django1.2版有些不同。对于post请求,工程配置文件settings.py中的MIDDLEWARE_CLASSES
中需要加入中间件'django.middleware.csrf.CsrfResponseMiddleware'
。
一般地,django.shortcuts包中提供了封装好的渲染html模板的方法render_to_response:
from django.shortcuts import render_to_response
def index(request):
return r ...