“Enum String Json” Kod odpowiedzi

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

Odpowiedzi podobne do “Enum String Json”

Pytania podobne do “Enum String Json”

Więcej pokrewnych odpowiedzi na “Enum String Json” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu