我正在尝试使用Flask创建一个带有webform的网站,但我一直收到500错误
这是我的模板/ main.html
<DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sample Page</title>
<meta name="viewport" content="width=device-width"
initial=scale=1/>
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='favicon.ico') }}" rel="shortcut icon">
</head>
<h2>Hello, this site is meant to test my fill_web_form.py script</h2>
<br>
<br>
<h1>Test Form</h1>
<form action="/" method="post" name="login">
{{ render_field(form.test_form) }}<br>
<p><input type="submit" value="Sign In"></p>
</form>
</html>
这是我的 init .py文件
from flask import Flask, render_template
#import sqlite3
app = Flask(__name__)
@app.route('/')
def homepage():
return render_template("main.html")
if __name__ == "__main__":
app.run()
这是我的form.py文件
from flask.ext.wtf import Form
from wtforms import StringField, BooleanField
from wtforms.validators import DataRequired
class LoginForm(Form):
test_form = StringField('test_form', validators=[DataRequired()])
为什么我一直收到500错误?我无法弄明白。
答案 0 :(得分:2)
以调试模式import form
运行,以在浏览器中查看更多信息。
您应该template
并发送给secret_key
。您可能需要csrf
才能使用from form import LoginForm
app.secret_key = 'A0Zr98j/3yX R~XHH!jmN]LWX/,?RT'
@app.route('/')
def homepage():
return render_template("main.html", form=LoginForm())
。等
name=oberon