小编典典

如何从AJAX发布中获取Flask中的数据

ajax

我想从变量“单击”中检索数据,以便可以在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')

阅读 521

收藏
2020-07-26

共1个答案

小编典典

您可以这样在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')
2020-07-26