当ServiceStack's JSON Serializer配置为抛出异常时,我们如何获得有关JSON反序列化异常的更多信息:
JsConfig.ThrowOnDeserializationError = true;
默认情况下,JSON Serializer会记录并忽略非关键异常,或者可以配置为使用上述配置抛出。
答案 0 :(得分:2)
当ServiceStack's JSON Serializer配置为在遇到反序列化错误时抛出,使用:
JsConfig.ThrowOnDeserializationError = true;
它捕获它能够反序列化的信息,并将它们存储在抛出的序列化异常中的ex.Data
字典中。
try {
string json = @"{""idBad"":""abc"", ""idGood"":""2"" }";
JsonSerializer.DeserializeFromString(json, typeof(TestDto));
Assert.Fail("Exception should have been thrown.");
} catch (SerializationException ex) {
Assert.That(ex.Data, Is.Not.Null);
Assert.That(ex.Data["propertyName"], Is.EqualTo("idBad"));
Assert.That(ex.Data["propertyValueString"], Is.EqualTo("abc"));
Assert.That(ex.Data["propertyType"], Is.EqualTo(typeof(int)));
}