摇曳的蔷薇
有两种方法。一、自己手动写 html 模板中的 <form ...> </form> 在views 中,将所需要的数据传递过去,比如 names_list = [1, 2, 3, 4] 在 html 中12345<select> {% for x in name_list %} <option value ="{{ x }}">{{ x }}</option> {% endfor %}</select>二、使用 Form 自动生成表单 这就需要在 views 中 动态初始化表单 具体的内容自己查 相应版本的 django文档去 内容在“Forms”中。