Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
124 views
in Technique[技术] by (71.8m points)

c# - JSON code not parsing also not showing any errors

I'm having an issue looping some JSON code, my JSON looks like:

{
    "mode_1": [
        "line_1",
        "line_2",
        "etc ..."
    ]
}

I have tried with my code:

var json = Helpers.GetJsonTemplateToUse(_currentSite, "site_json_1");
dynamic array = JsonConvert.DeserializeObject(json["mode_1"]);
foreach (var macro in array) 
{
   Helpers.ReturnMessage(macro);
}

The json var queries and returns the JSON code to parse, then DeserializeObject and foreach but i think i have done it wrong, I don't get any erros as such but the ReturnMessage function does not output any lines, any help would be appreciated.

question from:https://stackoverflow.com/questions/65892199/json-code-not-parsing-also-not-showing-any-errors

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You probably do not get any error message because you are using dynamic

Try:

var array = JsonConvert.DeserializeObject<YourModel>(json["mode_1"]);

YourModel should be your custom Json object class


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...