gpt4 book ai didi

jquery - 如何从 flask 中的 'ImmutableMultiDict'获取数据

转载 作者:太空狗 更新时间:2023-10-29 18:16:04 26 4
gpt4 key购买 nike

我正在学习如何使用 ajax 和 Flask,所以我要做的是发送一个 ajax 请求,然后在我的 python 文件中以 post 请求的形式接收数据

我的 html 文件包含这段代码

var data = {"name":"John Doe","age":"21"};
$.ajax({
url:'/post/data',
datatype : "json",
contentType: "application/json; charset=utf-8",
data : JSON.stringify(data),
success : function(result) {
jQuery("#clash").html(result);
},error : function(result){
console.log(result);
}
});

我的 python 文件包含:

@app.route('/post/data',methods=['GET','POST'])
def postdata():
#do some
data = str(request.args)
json_dumps = json.dumps(data)
return json_dumps

这给了我页面上的以下数据

"ImmutableMultiDict([('{\"name\":\"John Doe\",\"age\":\"21\"}', u'')])"

这就是我的request.query_string {%22name%22:%22John%20Doe%22,%22age%22:%2221%22}

那么如何获取姓名年龄。如果我在任何地方都错了,请纠正我。提前致谢。

最佳答案

您实际上不需要从 ImmutableMultiDict 获取数据。您所拥有的内容中有几个错误阻止您将响应作为 json 数据拉取。首先,您必须稍微调整 ajax 调用的参数。您应该将调用类型添加为 POST。此外,datatype 应拼写为 dataType。你的新电话应该是:

var data = {"name":"John Doe","age":"21"};
$.ajax({
type: 'POST',
contentType: 'application/json',
url: '/post/data',
dataType : 'json',
data : JSON.stringify(data),
success : function(result) {
jQuery("#clash").html(result);
},error : function(result){
console.log(result);
}
});

数据现在实际上是作为 json 类型的 post 请求发送的。在 Flask 服务器上,我们现在可以读取数据作为子信息,如下所示:

@app.route('/post/data',methods=['GET','POST'])
def postdata():
jsonData = request.get_json()
print jsonData['name']
print jsonData['age']
return "hello world" #or whatever you want to return

这将成功打印 John Doe21

如果这对您有用或者您有任何其他问题,请告诉我!

编辑:您可以按如下方式将成功返回给来自 flask 的 ajax 调用:

# include this import at the tomb
from flask import jsonify

@app.route('/post/data',methods=['GET','POST'])
def postdata():
...
return jsonify(success=True, data=jsonData)

关于jquery - 如何从 flask 中的 'ImmutableMultiDict'获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29091070/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com