view函数中使用重定向方法
return HttpResponseRedirect('redir2.html')
的时候不自觉的在前面加了request参数,结果报错:
TypeError at /book_info2/redir1.html
quote_from_bytes() expected bytes
去掉request参数之后就正常了。
view函数中使用重定向方法
return HttpResponseRedirect('redir2.html')
的时候不自觉的在前面加了request参数,结果报错:
quote_from_bytes() expected bytes
去掉request参数之后就正常了。