python代码:
错误信息:
html代码:
return render_template('index2.html', login_form=login_form)
第一个login_form是模板页面上的
第二个login_form是你的login()里面定义的
在尝试改代码的时候造成的,就算改过来了,还是会报错
我已经找到了解决方案了,不够还是要谢谢你
解决方案
https://blog.csdn.net/hhufeiji/article/details/85854627
我来说一下原因
在我创建的index.html、index2.html、login.html中,index2和login中都含有html代码(如上图)的所示代码,导致了这个错误,所以,我们只需要注释掉index2.html中的代码就好了,也可以更改试图函数中需要渲染的模板也可以解决