django-Views之使用视图渲染模板(五)

前端之家收集整理的这篇文章主要介绍了django-Views之使用视图渲染模板(五)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

render(<request>,<template_name>,context=-None,content_type=None,status=None,using=None)

必选参数:

request:生成HttpRequest对象

template_name:指定需要渲染的模板的名称

可选参数:

context:上下文,必须是一个字典,在HTML中使用它的Key,通过Key展示对应的value

context_type:指定上下文的类型

status:响应的状态码

using:用于加载模板的引擎名称

  • Django template language
  • jinjia2
from django.shortcuts import render
def index(request):
    return render(request,"index.html")

 

原文链接:/django/991020.html

猜你在找的Django相关文章