简体   繁体   中英

Cannot deserialize a JSON object

here's my JSON data

[
    {
        "market_id": "21",
        "coin": "DarkCoin",
        "code": "DRK",
        "exchange": "BTC",
        "last_price": "0.01777975",
        "yesterday_price": "0.01770278",
        "change": "+0.43",
        "24hhigh": "0.01800280",
        "24hlow": "0.01752015",
        "24hvol": "404.202",
        "top_bid": "0.01777975",
        "top_ask": "0.01790000"
    }
]

Here's my class

public class Model_MarketStats
{
    [JsonProperty(PropertyName="market_id")]
    public string market_id { get; set; }
    [JsonProperty(PropertyName = "code")]
    public string code { get; set; }
    [JsonProperty(PropertyName = "exchange")]
    public string exchange { get; set; }
    [JsonProperty(PropertyName = "last_price")]
    public string last_price { get; set; }
    [JsonProperty(PropertyName = "yesterday_price")]
    public string yesterday_price { get; set; }
    [JsonProperty(PropertyName = "change")]
    public string change { get; set; }
    [JsonProperty(PropertyName = "24hhigh")]
    public string highest { get; set; }
    [JsonProperty(PropertyName = "24hlow")]
    public string lowest { get; set; }
    [JsonProperty(PropertyName = "24hvol")]
    public string volume { get; set; }
    [JsonProperty(PropertyName = "top_bid")]
    public string top_bid { get; set; }
    [JsonProperty(PropertyName = "top_ask")]
    public string top_ask { get; set; }
}

The error said

Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON array (eg [1,2,3]) into type 'MintpalAPI.Model_MarketStats_Root' because the type requires a JSON object (eg {"name":"value"}) to deserialize correctly. To fix this error either change the JSON to a JSON object (eg {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (eg ICollection, IList) like List that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array.

This is the way I desialize the JSON

Model_MarketStats = JsonConvert.DeserializeObject<Model_MarketStats>(json);

您json是一个数组,请使用

var stats = JsonConvert.DeserializeObject<List<Model_MarketStats>>(json);

您的数据是一个数组,因此,您需要将其反序列化为一个数组/列表。

try this , it works and do include this using Newtonsoft.Json; convert json data to string and try this

 Model_MarketStats obj = JsonConvert.DeserializeObject<Model_MarketStats>(jsonstring);

else type cast that json value to list

 Model_MarketStats obj = JsonConvert.DeserializeObject<list<Model_MarketStats>>(jsonstring);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM