“Enum String JSON” Code-Antworten

JSON Enum String

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

[JsonConverter(typeof(StringEnumConverter))]
public Gender Gender { get; set; }
Unsightly Unicorn

Enum String JSON

var parsedJson = JSON.parse(json_text);

Result = Object.keys(parsedJson[0]).reduce((acc, key) => {
acc[key] = parsedJson.map(item => item[key])
return acc
}, {})    
console.log(JSON.stringify(Result,undefined, 4));
        
Worried Willet

Enum String JSON

var parsedJson = JSON.parse(json_text);

Result = Object.keys(parsedJson[0]).reduce((acc, key) => {
acc[key] = parsedJson.map(item => item[key])
return acc
}, {})    
console.log(JSON.stringify(Result,undefined, 4));
        
Worried Willet

Ähnliche Antworten wie “Enum String JSON”

Fragen ähnlich wie “Enum String JSON”

Weitere verwandte Antworten zu “Enum String JSON” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen