我希望能够将这样的数据发布到REST API:
POST /foo/b HTTP/1.1
Accept: application/json
Content-Type: application/json
{ "Qux": 42, "Corge": "c" }
foo
之后的URL段(即b
)也包含我需要在服务器端变量中捕获的数据。我尝试在ServiceStack中实现此功能(请参见下面的代码),但是响应正文为null
。
第一个是请求类型:
[Route("/foo/{Bar}", "POST")]
public class PostFooRequest : IReturn<PostFooResponse>
{
public string Bar { get; set; }
[ApiMember(ParameterType = "body")]
public Foo Body { get; set; }
}
如您所见,Bar
是一个URL变量。 Foo
类的定义如下:
public class Foo
{
public int Qux { get; set; }
public string Corge { get; set; }
}
此外,响应如下所示:
public class PostFooResponse
{
public string Bar { get; set; }
public Foo Foo { get; set; }
}
最后,服务本身的定义如下:
public class ReproService : Service
{
public object Post(PostFooRequest request)
{
return new PostFooResponse { Bar = request.Bar, Foo = request.Body };
}
}
请注意,此方法只是在响应中回显request
的值。
执行上述请求时,我只会得到Bar
的值:
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{"bar":"b"}
在Post
方法中设置断点将显示request.Body
是null
。
如何编写代码,以使API具有所需的合同?
FWIW,我知道this question,但答案仅说明了问题所在;不是解决方法。
答案 0 :(得分:2)
如果要将当前请求转换为以下DTO,则序列化程序应该能够填充属性:
[Route("/foo/{Bar}", "POST")]
public class PostFooRequest : IReturn<PostFooResponse>
{
public string Bar { get; set; }
public int Qux { get; set; }
public string Corge { get; set; }
}
串行器无法知道如何反序列化要发送的对象。
查看您的DTO和请求,我希望有一个不同的请求。
POST /foo/b HTTP/1.1
Accept: application/json
Content-Type: application/json
{
"Foo": { "Qux": 42, "Corge": "c" }
}
检索FormData
的其他方法是在Servicestack服务中使用以下属性
Request.FormData
。确保您不呼叫DTO,而是呼叫大写Request
。