我正在尝试制作一个生成以下 HTML 的烧瓶表单:
<input type="text" name="title" class="field">
<textarea class="field"></textarea>
<select name="status">
<option value="active">Active</option>
<option value="inactive">Inactive</option>
</select>
到目前为止,由于我是 python 新手,所以我已经走到了这一步。
{% from "forms/macros.html" import render_field %}
<form method="POST" action="." class="form">
{{ render_field(form.title, class="input text") }}
我的问题是,到目前为止,我的标题字段是否正确,假设我有,有人可以解释我如何获得文本区域和选择字段吗?我已经阅读了文档,我发现几乎不可能理解它。