greyli / helloflask

Hello, Flask!
https://docs.helloflask.com
MIT License
1.87k stars 2.53k forks source link

表单无法提交 #147

Closed baichen99 closed 5 years ago

baichen99 commented 5 years ago

因为需要在标签内添加内容,所以submit标签没有用wtforms渲染,结果这个表单无法提交

<form action="{{ url_for('items') }}"  method="post" style="margin-bottom: 50px">
                {{ form.csrf_token }}
                {{ form.title.label(for="title", style="font-size: 20px;") }}<br>
                {{ form.title(type="text", id="title", class="form-control text-center", placeholder="未命名") }}<br>
                {{ form.text.label(for="text", style="font-size: 20px;") }}<br>
                {{ form.text(type="text", id="text", class="form-control", placeholder="输入内容", rows=6, style="font-size: 20px;") }}<br>
                <submit class="btn btn-info pull-right"style="width: 40px"><span class="glyphicon glyphicon-plus"></span></submit>
            </form>
greyli commented 5 years ago

HTML 中没有 <submit> 这个标签,改为使用 <input type="submit"> 或是 <button type="submit">提交</button>

greyli commented 5 years ago

先关闭了,有疑问可以继续评论或重开。