5

在我当前的项目中,我的索引页面显示了几个种子,每个种子都有一个按钮来启动或停止种子。

我使用表单和循环创建页面,因此表单始终具有相同的名称。但我需要知道用户点击了哪个按钮才能知道要停止哪个种子!

这是模板:

{% block content %}
 <h1>Hello, {{user}} !</h1>

 {% for torrent in torrents %}
      <form action="/index" method="post" name="torrent">
           {{torrent.control.hidden_tag()}}
           <p><a href='/torrent/{{torrent.id}}'>{{torrent.name}}</a> is {{torrent.status}} and {{torrent.progress}} % finished. <input type="submit" value="Start / Stop">
           </p>
      </form>
  {% endfor %}

这是视图:

  @app.route('/index', methods = ['GET', 'POST'])
  def index():
  user = 'stephane'

  torrents = client.get_torrents()

  # for each torrent, we include a form which will allow start or stop
  for torrent in torrents:
    torrent.control = TorrentStartStop()
    if torrent.control.validate_on_submit():
        start_stop(torrent.id)

return render_template("index.html", title = "Home", user = user, torrents = torrents)

那么,我怎么知道用户想要停止/启动哪个种子?

4

3 回答 3

4

假设hidden_tag创建一个hidden输入,名称torrent_id和值是 torrent 的 ID,您将在以下位置找到 torrent id request.form["torrent_id"]

from flask import request

....
torrent_id = request.form["torrent_id"]
于 2013-09-28T14:38:17.403 回答
0

使用 HTML<button type="submit">元素并将 设置value为信息哈希,或设置formaction包含信息哈希的 URL(formaction仅限 HTML5)。

于 2013-09-28T14:37:06.870 回答
0

如果有人单击按钮并将其 css 类更改为活动按钮,则您可以使用 js 的活动按钮状态,然后检查哪个按钮处于活动状态并获取其信息。

这是js代码:

var btnContainer = document.getElementById("myDIV");

var btns = btnContainer.getElementsByClassName("btn");

for (var i = 0; i < btns.length; i++) {
 btns[i].addEventListener("click", function() {
  var current = document.getElementsByClassName("active");
current[0].className = current[0].className.replace(" active", "");
this.className += " active";
 });
  }

这是按钮的css:

  .btn {
    border: none;
    outline: none;
    padding: 10px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
    }


   .active, .btn:hover {
    background-color: #666;
    color: white;
    }
于 2020-03-18T19:43:27.127 回答