Django模板Templates使用方法详解

作者:Pengzquan 时间:2023-04-22 07:40:47 

一、django的模板:

在settings.py的文件中可以看到并设置这个模板。

Django模板Templates使用方法详解

1.直接映射:

Django模板Templates使用方法详解

通过建立的文件夹(templates)和文件(html)来映射。


<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>

from django.shortcuts import render
from django.http import HttpResponse

# Create your views here.

def index(request):
 return render(request, 'index.html', {"Jhy": "I love your!"})

2.通过DTL(django templates language)的实现方式:

在创建一个新的templates的文件夹,在新建一个html的文件。

Django模板Templates使用方法详解


<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>
</head>
<body>
<h1>{{Jhy}}</h1>
</body>
</html>

在<h1>的标签中添加了关于render(渲染)的第三个参数的键值。

这个参数是一个dict的数据类型


def index(request):
  return render(request, 'index.html', {"Jhy": "I love your!"})

其中render的第一个参数就是index的参数,第二个为templates的下的html文件,第三个就是通过dict的数据类型存储templates将要映射的东西。

3.注意:

当有两个应用的templates中相同名字的html文件时,django会根据添加的顺序来进行映射,解决方法:

建立一个和App同名的文件夹,将html文件放入该文件下。

Django模板Templates使用方法详解

来源:https://www.cnblogs.com/future-dream/p/10380549.html

标签:django,模板,templates
0
投稿

猜你喜欢

  • python requests.post请求404问题及解决方法

    2022-08-16 09:36:23
  • 使用pycharm和pylint检查python代码规范操作

    2023-06-06 08:02:38
  • 17个vue常用的数组方法总结与实例演示

    2024-06-07 16:06:07
  • python3第三方爬虫库BeautifulSoup4安装教程

    2023-05-10 21:11:57
  • Python条件语句的使用

    2023-01-04 04:03:36
  • Python编程基础之输入与输出

    2021-03-03 10:06:07
  • sqlserver 触发器教程

    2024-01-15 08:38:17
  • python数据可视化plt库实例详解

    2022-11-30 21:23:28
  • Javascript异步流程控制之串行执行详解

    2024-04-19 09:56:49
  • python字符串运算符详情

    2023-11-19 20:51:31
  • Javascript正则表达式基础

    2009-02-01 18:13:00
  • python爬虫开发之使用Python爬虫库requests多线程抓取猫眼电影TOP100实例

    2021-02-25 11:13:42
  • Python的加密模块之hashlib 与 base64详解及常用加密方法

    2023-11-28 09:30:18
  • SQL Server数据库附加失败的解决办法

    2024-01-25 05:38:23
  • 浅谈python新手中常见的疑惑及解答

    2022-06-23 18:45:40
  • 利用Python通过获取剪切板数据实现百度划词搜索功能

    2023-07-14 06:59:06
  • 利用Python函数实现一个万历表完整示例

    2022-06-30 18:06:22
  • Python 取numpy数组的某几行某几列方法

    2023-11-24 05:46:47
  • Pycharm配置远程SSH服务器实现(切换不同虚拟环境)

    2023-09-06 10:11:09
  • Quoted-printable 编码介绍、Quoted-printable编码解码转换方法

    2022-02-20 07:46:05
  • asp之家 网络编程 m.aspxhome.com