如何从AJAX发布中获取Flask中的数据
我想从变量“单击”中检索数据,以便可以在Flask的SQL查询中使用它。
jQuery查询
$(document).ready(function(){ var clicked;
$(".favorite").click(function(){
clicked = $(this).attr("name");
$.ajax({
type : 'POST',
url : "{{url_for('test')}}",
data : clicked
});
});
});
烧瓶/ Python
@app.route('/test/', methods=['GET','POST'])def test():
return render_template('test.html')
回答:
您可以这样在ajax请求中编写有效负载:
$(document).ready(function(){var clicked;
$(".favorite").click(function(){
clicked = $(this).attr("name");
$.ajax({
type : 'POST',
url : "{{url_for('test')}}",
contentType: 'application/json;charset=UTF-8',
data : {'data':clicked}
});
});
});
在烧瓶端点中,可以按以下方式提取值:
@app.route('/test/', methods=['GET','POST'])def test():
clicked=None
if request.method == "POST":
clicked=request.json['data']
return render_template('test.html')
以上是 如何从AJAX发布中获取Flask中的数据 的全部内容, 来源链接: utcz.com/qa/410336.html