Python:{“ errors”:{“”:[“无法将当前JSON数组例如[1,2,3]反序列化为类型'

我的dict格式数据json_output在Python中是这样的:

[{'code': 'Z0001001','dateList': [{'FDate': '2008-01-11T00:00:00','value': 308.7931034482759},{'FDate': '2008-01-18T00:00:00',{'FDate': '2008-01-25T00:00:00',{'FDate': '2008-01-31T00:00:00',{'FDate': '2008-02-08T00:00:00','value': 309.82758620689657},{'FDate': '2008-02-15T00:00:00',{'FDate': '2008-02-22T00:00:00',{'FDate': '2008-02-29T00:00:00',{'FDate': '2008-03-07T00:00:00','value': 323.9655172413793},{'FDate': '2008-03-14T00:00:00',{'FDate': '2008-03-21T00:00:00',{'FDate': '2008-03-31T00:00:00',{'FDate': '2008-04-11T00:00:00','value': 324.48275862068965},{'FDate': '2008-04-18T00:00:00',{'FDate': '2008-04-25T00:00:00',{'FDate': '2008-04-30T00:00:00',{'FDate': '2008-05-09T00:00:00','value': 326.2068965517241},{'FDate': '2008-05-16T00:00:00',{'FDate': '2008-05-23T00:00:00',{'FDate': '2008-05-30T00:00:00','value': 329.3333333333333}]},{'code': 'Z0001002','value': 294.2857142857143},'value': 297.14285714285717},'value': 307.14285714285717},'value': 309.2857142857143},'value': 309.2857142857143}]}]

然后我使用json.dumps()将其转换为json格式,以便可以通过api将json数据转换为sql Server。

data_json = json.dumps(json_output)

from requests_negotiate_sspi import HttpNegotiateAuth
url = "http://xxx/api/xxx"
r_json = requests.post(url,data_json,headers={'Content-Type':'application/json'},auth=HttpNegotiateAuth())
print(r_json)
print(r_json.text)
print(r_json.status_code)
print(r_json.raise_for_status())

但是,当我运行它时,它给了我这样的错误

{"errors":{"":["Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'ZSFund.DataService.Web.Models.Code.CodeValueMaintainEntity' because the type requires a JSON object (e.g. {\"name\":\"value\"}) to deserialize correctly.\r\nTo fix this error either change the JSON to a JSON object (e.g. {\"name\":\"value\"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection,IList) like List<T> that can be deserialized from a JSON array. 

我试图将它们一次转换,就像一次将Z0001001转换为sql一样,格式如下:

{'code': 'Z0001001','value': 329.3333333333333},}]}

显示一切正常,没有任何错误,因此我想数组或列表可能有问题。有什么想法吗?

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...