我不知道如何检查用户是否在烧瓶中填写表单。
我有这个表格
<form method="POST" class="form-horizontal">
<input type="text" name="name" value="{{ name }}">
<input type="submit" class="btn" value="Add"/>
</form>
然后我想检查字段中的值并处理它。
if request.method == 'POST':
name = request.form['name']
if name is None: // this doesn't work
# do something
if name == string.empty: // this also doesn't work
# do something
请你能给我一些建议。谢谢