如何将数据从Plain Old Javascript发送到Flask并使用XMLHTTPRequest获取CSV数据?

问题描述

我陷入一个问题。我希望使用Flask Plain Old Javascript's对象将数据发送回我的XMLHTTPRequest后端。我希望重新获得CSV data格式的String

function ajax_request() {
  const request = new XMLHttpRequest();
  let csrf_token = '{{ csrf_token() }}';

  let json_data = {
    'data' :[]
  };
  json_data['data'].push(data);


  // Define what happens on successful data submission
  request.addEventListener('load',function(event) {
     console.log("This Worked");
   });

  // Define what happens in case of error
  request.addEventListener('error',function(event) {
    alert('Error: AJAX request Failed.');
    console.log(request.responseText);
  } );

  // Open our request and set the headers.
  request.open("POST","/my-route",true);
  request.setRequestHeader("X-CSrftoken",csrf_token);
  // Add the required HTTP header for form data POST requests
  request.setRequestHeader('content-type','application/x-www-form-urlencoded;charset=UTF-8');
  request.send(json_data);
}

这似乎很公平。我不确定是否可以发送x-www-form-urlencoded格式的json。我可能需要json来代替,但不确定是否意味着响应需要为json,这不是我想要的。我一直在尝试解决这个问题,却一无所获

我的app.py是

@dashboard_blueprint.route('/my-route',methods=["GET","POST"])
def my_page():
    # If the user is changing the variables / giving us data
    if request.method == "POST":
        print(request.form)
        json_data = request.form.get('data')
        # parse on json data
        csv_data = ....
        return csv_data
    else:
        print(form.errors)

我尝试了request.jsonrequest.data和其他一些组合。奇怪的是,当我不传递任何变量来获取新的CSV数据而只请求不带任何变量的CSV数据时,我可以使它工作。所以我似乎很固执。任何建议表示赞赏!

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)