我在 GAE 中运行 python 并且遇到了一些与 GQL 查询和使用模板相关的问题。
当我加载主页时,它会触发此功能:
class MainPage()
def get(self):
product_list = Post.gql("ORDER BY product LIMIT 10")
self.render('index.html', product_list = product_list)
def post(self):
email = self.request.get('email')
product = self.request.get('product')
if email and product:
p = Post(parent = blog_key(), email = email, product = product)
p.put()
它应该将产品列表传递到主页,并通过主页上的表格接受新条目。
索引.html:
<form id="inputs" method="post">
<input id="product" type="text" name="product" value="product?" value="{{product}}"></input>
<input type="text" name="email" id="email" value="email?" value="{{email}}"></input>
<button type="submit" value="submit!">Submit</button>
</form>
<div id="results">
{% for p in product_list %}
{{p.product}}<br>
{{p.email}}
<br><br>
{% endfor %}
</div>
当我加载主页时,“结果” div 中没有显示任何内容。在 GAE 管理控制台中,我可以看到应该显示一些“发布”实体。