错误信息:
IntegrityError at /add_books/
(1048, "Column 'title' cannot be null")
Request Method: | POST |
---|---|
Request URL: | http://127.0.0.1:8000/add_books/ |
Django Version: | 3.2 |
Exception Type: | IntegrityError |
Exception Value: | (1048, "Column 'title' cannot be null") |
解决办法:
原因可能是前端数据没有通过POST方法传到后端,尝试print(request.POST),查看前端是否成功发送数据至后端。如果为空,则尝试以下方法。
需要在前端HTML文件中,进行数据绑定,使用name标签。