django view
Posted mingxiazhichan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django view相关的知识,希望对你有一定的参考价值。
1,templates
django 是python写的,因此里面自然可以用到python的类。下面一个例子,结合jinja2语法。
views.py
from django.shortcuts import render,HttpResponse,render_to_response from django.template import loader,Context # Create your views here. class Person(object): def __init__(self): self.name=‘carl‘ self.age=15 self.mail=‘[email protected]‘ def get_content(self): return self.name+self.mail def mainmenu(req): # t=loader.get_template("index.html") # c=Context({}) # return render(req,‘index.html‘,locals()) # return HttpResponse(t.render({})) # return render_to_response("index.html",{}) #user={‘name‘:‘zhoujielun‘,‘age‘:18,‘mail‘:‘[email protected]‘} p=Person() user=p #user=[‘小明‘,‘xiaohong‘,‘xiaolan‘] return render(req,"index.html",locals())
index.html
<h1>hello, {% if user.name %} <h1> {{user.name|length}}</h1> <!-- user.get_content --> {%else%} {{user.age}} {%endif%} </h1>
其中传递给模板的变量可以是字典,对象,和列表等。优先级
字典 > 对象属性 > 对象方法 > 列表
2.if
if 模板常用的东西:
{% if condition %} some html code here {%else%} other html code here {%endif%}
3.for
for模板常用东西:
<ul> {%for item in name%} <li> {{ forloop.counter }} #循环次数。从1开始 {%if forloop.first%} #是不是变量中的首个 <h1>first</h1> {%endif%} {%if forloop.last%} #是不是来变量的最后一个 <h1>last</h1> {%endif%} {{item}} </li> {%endfor%} </ul>
以上是关于django view的主要内容,如果未能解决你的问题,请参考以下文章
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
android.view.InflateException:二进制 XML 文件第 15 行:二进制 XML 文件第 19 行:膨胀类片段时出错
自己定义View时,用到Paint Canvas的一些温故,简单的帧动画(动画一 ,"掏粪男孩Gif"顺便再提提onWindowFocusChanged)(代码片段