将JSON字符串转换为字典而不是列表

我试图传递一个JSON文件,并将数据转换为字典。

到目前为止,这是我所做的:

import json
json1_file = open('json1')
json1_str = json1_file.read()
json1_data = json.loads(json1_str)

我期望json1_data是一个dict类型,但当我用type(json1_data)检查它时,它实际上是一个list类型。

我错过了什么?我需要它是一个字典,这样我就可以访问其中一个键。

658115 次浏览

你的JSON是一个数组,里面只有一个对象,所以当你读入它时,你会得到一个里面有字典的列表。你可以通过访问列表中的第0项来访问你的字典,如下所示:

json1_data = json.loads(json1_str)[0]

现在你可以访问存储在越来越多中的数据,正如你所期望的那样:

datapoints = json1_data['datapoints']

我还有一个问题,如果有人能咬:我试图取这些数据点中第一个元素的平均值(即。点[0][0])。为了列出它们,我试着做数据点[0:5][0],但我得到的是带有两个元素的第一个数据点,而不是只想获得只包含第一个元素的前5个数据点。有办法做到这一点吗?

datapoints[0:5][0]不会做你期待的事情。datapoints[0:5]返回一个只包含前5个元素的新列表片,然后在它的末尾添加[0]将只取第一个元素从结果列表片。你需要使用列表理解来获得你想要的结果:

[p[0] for p in datapoints[0:5]]

这里有一个简单的方法来计算平均值:

sum(p[0] for p in datapoints[0:5])/5. # Result is 35.8

如果你愿意安装NumPy,那么它甚至更容易:

import numpy
json1_file = open('json1')
json1_str = json1_file.read()
json1_data = json.loads(json1_str)[0]
datapoints = numpy.array(json1_data['datapoints'])
avg = datapoints[0:5,0].mean()
# avg is now 35.8

,操作符与NumPy数组的切片语法一起使用,具有您最初对列表切片所期望的行为。

下面是一个简单的片段,从字典中读取json文本文件。注意,你的json文件必须遵循json标准,所以它必须有"双引号,而不是'单引号。

您的JSON dump.txt文件:

{"test":"1", "test2":123}

Python脚本:

import json
with open('/your/path/to/a/dict/dump.txt') as handle:
dictdump = json.loads(handle.read())

加载JSON数据到字典的最好方法是你可以使用内置的JSON加载器。

下面是可以使用的示例代码片段。

import json
f = open("data.json")
data = json.load(f))
f.close()
type(data)
print(data[<keyFromTheJsonFile>])

你可以使用以下方法:

import json


with open('<yourFile>.json', 'r') as JSON:
json_dict = json.load(JSON)


# Now you can use it like dictionary
# For example:


print(json_dict["username"])

使用javascript ajax从get方法传递数据

    **//javascript function
function addnewcustomer(){
//This function run when button click
//get the value from input box using getElementById
var new_cust_name = document.getElementById("new_customer").value;
var new_cust_cont = document.getElementById("new_contact_number").value;
var new_cust_email = document.getElementById("new_email").value;
var new_cust_gender = document.getElementById("new_gender").value;
var new_cust_cityname = document.getElementById("new_cityname").value;
var new_cust_pincode = document.getElementById("new_pincode").value;
var new_cust_state = document.getElementById("new_state").value;
var new_cust_contry = document.getElementById("new_contry").value;
//create json or if we know python that is call dictionary.
var data = {"cust_name":new_cust_name, "cust_cont":new_cust_cont, "cust_email":new_cust_email, "cust_gender":new_cust_gender, "cust_cityname":new_cust_cityname, "cust_pincode":new_cust_pincode, "cust_state":new_cust_state, "cust_contry":new_cust_contry};
//apply stringfy method on json
data = JSON.stringify(data);
//insert data into database using javascript ajax
var send_data = new XMLHttpRequest();
send_data.open("GET", "http://localhost:8000/invoice_system/addnewcustomer/?customerinfo="+data,true);
send_data.send();


send_data.onreadystatechange = function(){
if(send_data.readyState==4 && send_data.status==200){
alert(send_data.responseText);
}
}
}

django的观点

    def addNewCustomer(request):
#if method is get then condition is true and controller check the further line
if request.method == "GET":
#this line catch the json from the javascript ajax.
cust_info = request.GET.get("customerinfo")
#fill the value in variable which is coming from ajax.
#it is a json so first we will get the value from using json.loads method.
#cust_name is a key which is pass by javascript json.
#as we know json is a key value pair. the cust_name is a key which pass by javascript json
cust_name = json.loads(cust_info)['cust_name']
cust_cont = json.loads(cust_info)['cust_cont']
cust_email = json.loads(cust_info)['cust_email']
cust_gender = json.loads(cust_info)['cust_gender']
cust_cityname = json.loads(cust_info)['cust_cityname']
cust_pincode = json.loads(cust_info)['cust_pincode']
cust_state = json.loads(cust_info)['cust_state']
cust_contry = json.loads(cust_info)['cust_contry']
#it print the value of cust_name variable on server
print(cust_name)
print(cust_cont)
print(cust_email)
print(cust_gender)
print(cust_cityname)
print(cust_pincode)
print(cust_state)
print(cust_contry)
return HttpResponse("Yes I am reach here.")**

我正在使用一个REST API的Python代码,所以这是为那些正在从事类似项目的人准备的。

我使用POST请求从URL中提取数据,原始输出是JSON。由于某种原因,输出已经是一个字典,而不是一个列表,我能够立即引用嵌套的字典键,如下所示:

datapoint_1 = json1_data['datapoints']['datapoint_1']

其中datapoint_1在数据点字典中。