Template本身也有自己的语言和语法,用来处理简单的数据显示 常用语法 判断指令 {% if 条件 %}...{%endif%} {% if 条件 %}...{%elif 条件 %}...{%endif%} {% if 条件 %}...{%elif 条件 %}...{%else%}...{%endif%} {% if a in b %}...{%endif%} 循环指令 {%for %} ...{%endfor} {% froloop.counter%}用来显示当前循环的计数器,从1开始 {…
模板 1.视图中使用模板 模版的创建过程,对于模版,其实就是读取模版(其中嵌套着模版标签),然后将 Model 中获取的数据插入到模版中,最后将信息返回给用户 1.普通方法:HTML被直接硬编码在 Python 代码 def current_datetime(request): now = datetime.datetime.now() html = "<html><body>It is now %s.</body></html>" %…
1.模版的执行 模版的创建过程,对于模版,其实就是读取模版(其中嵌套着模版标签),然后将 Model 中获取的数据插入到模版中,最后将信息返回给用户. def current_datetime(request): now = datetime.datetime.now() html = "<html><body>It is now %s.</body></html>" % now return HttpResponse(html) 方法一…
Form 一.使用Form Django中的Form使用时一般有两种功能: 1.生成html标签 2.验证输入内容 要想使用django提供的form,要在views里导入form模块 from django import forms 然后再定义一个类,这个类就是要在前端html页面中生成form表单中的input标签的. class UserInfo(forms.Form): email = forms.EmailField() host = forms.CharField() port =…