Django bbs 项目笔记
更新:HHH   时间:2023-1-7



1.如果用户没登录访问聊天页面,跳转到登录页面:

if not request.user.is_authenticated():
    return  render(request,'login.html')
user_add = bbs_models.UserProfile.objects.all()
print 'user_add:',user_add
return  render(request,'webqq/chat.html',{
    'users':user_add
})


返回开发技术教程...