7
La documentación sugiere que NancyFx me ayuda con la deserialización WRT del cuerpo de solicitud json, pero no estoy seguro de cómo. Ver siguiente prueba para demostrar:NancyFX: Deserializar JSON
[TestFixture]
public class ScratchNancy
{
[Test]
public void RootTest()
{
var result = new Browser(new DefaultNancyBootstrapper()).Post(
"/",
with =>
{
with.HttpRequest();
with.JsonBody(JsonConvert.SerializeObject(new DTO {Name = "Dto", Value = 9}));
});
Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
}
public class RootModule : NancyModule
{
public RootModule()
{
Post["/"] = Root;
}
private Response Root(dynamic o)
{
DTO dto = null;//how do I get the dto from the body of the request without reading the stream and deserializing myself?
return HttpStatusCode.OK;
}
}
public class DTO
{
public string Name { get; set; }
public int Value { get; set; }
}
}
¡Gracias, gracias, sencillo y elegante Me estoy enamorando de Nancy. –
¿Hay algún prerrequisito para ser serializado? Paso una cadena JSON válida pero mi objeto dinámico no tiene claves ni valores. –