首先请原谅我在 django、python 和 html 中的跛足。
我将小部件添加到 html,并且我想从数据库中填充项目。我尝试了以下但它不起作用,它只显示明显的('ALL'项目):
HTML:
<select name=\"accountName\" >
<option value=\"ALL\">ALL</option>
{% for item in select_items %}
<option value=\"'+item.accountName+'\">'+item.accountName+'</option>
{% endfor %}
</select>
Python:
class StartPage(webapp.RequestHandler):
def get(self):
select_items = db.GqlQuery( "SELECT * FROM Registration" )
self.response.out.write(template.render("tst.html", {'select_items': select_items}))
请注意,数据库确实包含东西,而不是空的。谢谢