首页上一页 1 下一页尾页 1 条记录 1/1页
怎样让新建的用户 与登录用户比对,然后能让登录的用户看到自己说关联的数据
发表在Python图书答疑
2019-12-04
《Python从入门到项目实践》第23章 Django Web框架的使用
是否精华
是
否
版块置顶:
是
否
django中 引用了User表, 获取到了登录名,怎样让他和我生成的用户名进行比对,加个关联的话 可以比对,但是新建的用户,没有关联数据会报错.我把用户也和别的数据关联了,这个问题怎么解决.
我的代码:
def customer(request):
"""显示我的客户"""
businessList = Business.objects.filter(busOwner=request.user).filter(state= True)
for i in businessList:
if i.busOwner != request.user:
return render(request,'myApp/sos.html')
else:
customerList = i.customer_set.all()
context ={"customer":customerList,"i":i}
return render(request,"myApp/customer.html", context)
报错提示:
Exception Type: | ValueError |
---|---|
Exception Value: | The view myApp.views.customer didn't return an HttpResponse object. It returned None instead. |
于2019-12-04 21:56:53编辑