gpt4 book ai didi

javascript - 服务器端的AJAX/JSON : pass all arguments to a Python dictionary (Flask)

转载 作者:行者123 更新时间:2023-12-02 18:01:47 25 4
gpt4 key购买 nike

我的 Javascript 中有一个 jQuery AJAX 调用,它向服务器发送大量信息:(Javascript)

    $.ajax({
datatype: "json",
url: SCRIPT_ROOT + '/email',
data: $.extend({}, dict_list[0], dict_list[1]),
success: (function(){console.log('E-mail success.')}),
error: (function(){console.log('E-mail failure.')})
})

现在我只是将所有字典键放入列表中并创建字典,如下所示:(Python)

def testemail():
"""
pre = ['red', 'blu', 'red_t', 'blu_t', 'red_p', 'blu_p', 'n_r', 'tou', 'mo', 'comm']
post = [''] * len(prestats)
for i in range(0, len(prestats)):
post[i] = request.args.get(pre[i], '', type = str)

在我的 Flask Python 服务器端代码中,有没有办法自动将所有数据解析到字典中?基本上我想要一些东西来获取 $.ajax 创建的所有参数并在 Python 中重新创建字典。

最佳答案

您是否正在寻找 request.json?

关于javascript - 服务器端的AJAX/JSON : pass all arguments to a Python dictionary (Flask),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20462302/

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