作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
def addbook(request):
if request.method == 'POST':
book_name =request.POST['book_name']
Book = Book.objects.get()
Book.save()
return render_to_response('book_detail.html', {'books': books},context_instance=RequestContext(request))
else:
return render_to_response('addbook.html',context_instance=RequestContext(request))
def book_detail(request):
return render(request, 'book_detail.html')
上面是我的 view.py 我收到这个错误“MultiValueDictKeyError at/addbook/”
请帮帮我
最佳答案
该错误意味着“book_name”不在您的 POST 数据中。
如果你想处理这种情况,你可以使用 book_name = request.POST.get('book_name'),如果它不在 POST 数据中,它会将 book_name 默认为 None。
如果没有,您需要确保表单有一个名为“book_name”的输入。
关于python - MultiValueDictKeyError 在/addbook/,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15137725/
def addbook(request): if request.method == 'POST': book_name =request.POST['book_name']
我是一名优秀的程序员,十分优秀!