首页 > 其他分享 >Django context must be a dict rather than UserProfile.

Django context must be a dict rather than UserProfile.

时间:2023-02-15 10:33:40浏览次数:51  
标签:index rather Django dict data than UserProfile

context must be a dict rather than UserProfile.

 

# 主页
@login_required
def index(request):
data={}
data = request.user
print(type(data))
print(data)
return render(request, 'index.html',{"data":data})

# index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>企业数字化管理平台</title>
</head>
<body>
<h1>你好{{ data.username }}</h1>
</body>
</html>

标签:index,rather,Django,dict,data,than,UserProfile
From: https://www.cnblogs.com/beichengshiqiao/p/17121884.html

相关文章

  • Django日志配置
    Django使用Python内建的logging模块打印日志,配置由四个部分组成记录器:Logger处理程序:Handler过滤器:Filter格式化:formatter 记录器-LoggerLogger为日志系......
  • django模糊查询排序
    classBook(models.Model):"""列名"""classMeta:db_table='book'name=models.CharField(verbose_name="名字",max_length=32)......
  • 基于Django开发的小型超市收银系统及各种炒股指标信息
    登录页面注册忘记密码诗词推荐展示登录  首页今天收益信息日收益趋势图商品热度Top15商品预警Top5待办任务Top5诗词推荐Top5 超市收银系统......
  • python中defaultdict 的用法
    defaultdict:当我使用普通的字典时,用法一般是dict={},添加元素的只需要dict[element]=value即,调用的时候也是如此,dict[element]=xxx,但前提是element字典里,如果不在字......
  • 对json中的字典提取其中的所有参数(包括list和dict中)整合为一层
    例如:在python中,我有一个字典,类似于{s1:[{s11:0,s12:2},{s13:3,s14:4}],s2:'s2',s3:{s31:0,s32:2}},我想使用递归提取其中所有的字典的key值和value,并在key值中包含它在字典......
  • ChatGpt*u_ Predict the trend of U.S. stocks in 2023
    question:PredictthetrendofU.S.stocksin2023chatgpt: I'msorry,butasanAIlanguagemodel,Idonothavetheabilitytopredictfuturemarkettrends......
  • 10 Django中间件
    Django中间件中间件介绍django中间件类似于是django的保安,请求来的时候需要先经过中间件才能到达django后端,响应走的时候也需要经过中间件才能到达web服务网关接口dja......
  • 06 Django与Ajax
    Django与Ajax什么是JSONJSON是轻量级的文本数据交换格式,JSON使用JavaScript语法来描述数据对象,但是JSON仍然独立于语言和平台。JSON解析器和JSON库支持许多不......
  • 01 Django简介
    前戏Wsgiref模块封装了socket代码请求来的时候将http数据格式拆封成一个大字典响应走的时候将数据打包成符合http协议要求的数据格式#模块封装了socket代码并将请求......
  • 基于Django开发的小型超市收银系统及各种炒股指标信息
    登录页面注册修改密码诗词推荐背景刷新更换登录 首页今日收益金额日收益折线图商品热度排行商品预警信息今日待办任务诗词推荐      ......