gpt4 book ai didi

python - 如何从Python中的JSON对象获取数据数组?

转载 作者:行者123 更新时间:2023-11-30 22:13:25 24 4
gpt4 key购买 nike

我有一个像这样的 jquery POST 函数:

 $.post(data_send_url,
{
all_letters:["A","B","C"]
},
function(data, status){
alert(data);
});

在服务器端,当我使用 request.data 访问它时在 Django view function我明白了 <QueryDict: {'all_letters[]': ['e', 'r', 'p']}> 。如何获得像 all_letters = ['e','r','p'] 这样的 Python 列表?

最佳答案

这段代码解决了我的问题:

$.post(data_send_url,
{
all_letters:JSON.stringify(["A","B","C"]), //JSON.stringify added
},
function(data, status){
alert(data);
});

在views.py中

json.loads(request.data.get("all_letters"))
json.loads(request.POST["all_letters"]) #both of these work fine

关于python - 如何从Python中的JSON对象获取数据数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50783006/

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