可能でしょうか?JavaScriptSerializerでラクダを強制するには?
私はこのようなクラスがあります。
public class ABC
{
[Key]
[ScriptIgnore]
public int Id { get; set; }
public string Name { get; set; }
public string AnotherField { get; set; }
[ScriptIgnore]
public virtual User User { get; set; }
}
をしかし、私はこの{ "name":"foo", "anotherField":"bar" }
の代わり { "Name":"foo", "AnotherField":"bar" }
のようにシリアライズしたいと思います。
これは私が使用する方法である:
return Request.CreateResponse(HttpStatusCode.OK, new JavaScriptSerializer().Serialize(obj));
役立つはずです:http://stackoverflow.com/questions/4671044/deserializing-json-responses-which-contain-attributes-that-conflict-with -キーワード。もちろん、組み込みのシリアライザを離れなければならないことは明らかです。 –
JSON.NETを使用している場合は、「CamelCasePropertyNamesContractResolver」があります。http://www.asp.net/web-api/overview/formats-and-model-binding/json-and-xml-serializationを参照してください。 Web.Api –
これは重複している可能性があります:http://stackoverflow.com/questions/15040838/mvc-jsonresult-camelcase-serialization –