目前我有一个瓶子应用程序从sqlite数据库中读取元素并将它们显示在表格中(使用啤酒因为嗯......我喜欢啤酒)。我希望能够使用表格行中的加法和减法按钮调整表格中的数字(金额)。按钮应更新数据库中的金额,并刷新页面上显示的金额。
这是python / bottle部分:
@app.route('/')
@app.route('/display')
def display():
conn = sqlite3.connect('beers.db')
c = conn.cursor()
c.execute("SELECT id, brewer, beer, amount FROM beer;")
result = c.fetchall()
c.close()
output = template('make_table', rows=result)
return output
这是当前模板,带有加号和减号按钮。
<p>The available beers are:</p>
<table border="1">
%for row in rows:
<tr>
%for col in row:
<td>{{col}}</td>
%end
<td><input type ="button" value="Add"></td>
<td><input type ="button" value="Subtract"></td>
</tr>
%end
</table>
感谢您的帮助!
答案 0 :(得分:3)
使用/display
方法添加POST
路线。
在此,捕获啤酒ID的值,如果用户点击了添加或子。
完成此操作后,您将获得啤酒ID以及要执行的操作,您只需使用数据库执行操作,然后重定向到/display
页。
这里是Bottle App代码:
@app.route('/display', method='POST')
def display_mod():
#You get the value of each button : None if non clicked / Add or Sub if clicked
add = request.POST.get('Add')
sub = request.POST.get('Sub')
# b_id is the ID of the beer the user's clicked on (either on add or sub)
b_id = request.POST.get('beer_id')
if add is not None:
# do something
redirect("/display")
if sub is not None:
# so something
redirect("/display")
然后,更改模板以包含表单并更改提交按钮中的两个按钮。您还需要输入hidden
输入,以便将数据传递给应用程序。
<p>The available beers are:</p>
<table border="1">
%for row in rows:
<tr>
<!-- Here you grab the beer's ID that you'll use later -->
%p_id = row[0]
%for col in row:
<td>{{col}}</td>
%end
<form action="/display" method="POST">
<!-- input type hidden, and value is the ID of the beer -->
<input type = "hidden" name ="beer_id" value= "{{p_id}}">
<td><input type ="submit" name="Add" value="Add"></td>
<td><input type ="submit" name="Sub" value="Subtract"></td>
</form>
</tr>
%end
</table>
你走了。希望它有所帮助(如果是这样,不要害羞,请给我一杯啤酒!)