0
私はdatatablesを使用して、次のようにデータをページテーブルとして表示しています。私が持っていけないので、そのクリックされた(see this)jqueryからフラスコにデータを送信する方法
</head>
<body>
<div>
<table id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
</tbody>
</table>
</div>
<script type="text/javascript">
$(document).ready(function() {
var table = $('#example').DataTable();
$('#example tbody').on('click', 'tr', function() {
var data = table.row(this).data();
alert('You clicked on '+data[0]+'\'s row');
});
});
</script>
</body>
</html>
がどのように私はAjax呼び出しを使用してフラスコ機能process
にdata[0]
にこの値を渡すことができたとき、私は私が行から値を取得することができます余分な機能を追加しましたページ全体をリフレッシュします。つまり、完了したら指定されたDOMをリフレッシュします。process()
私は初心者です、私と一緒に耐えてください。
from flask import Flask, render_template, request
app = Flask(__name__)
app.debug=True
@app.route('/')
def index(name=None):
return render_template('index.html', name=name)
@app.route('/process', methods=["GET", "POST"])
def process():
#Do something with the value
return render_template('process.html', value=value)
if __name__ == '__main__':
app.run()
AJAXについてはJQueryのドキュメントを確認してください。 – stamaimer
それは簡単です。 [$。post](https://api.jquery.com/jquery.post/)を使用するだけで、 – MrLeeh