REST WCF 服务 - 使用查询字符串参数
我有这个 REST WCF 服务。
[WebInvoke(UriTemplate = "/GetNames/{Category}?order=asc", Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
public List<Names> GetNames(string Category)
{
//Code to retrieve Names by category.
}
Category 参数映射到 Uri 中的 {Category}
。
但是如何将 Uri 中的订单查询字符串映射到此方法呢?
添加订单作为参数方法不起作用。
请帮忙。提前致谢。
I have this REST WCF service.
[WebInvoke(UriTemplate = "/GetNames/{Category}?order=asc", Method = "POST", ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json)]
public List<Names> GetNames(string Category)
{
//Code to retrieve Names by category.
}
The Category parameter is mapped to {Category}
in the Uri.
But how can I map the order query string in the Uri to this method?
Adding the order as a parameter method is not working.
please help. thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过 - Uritemplate 和函数中的“/GetNames/{Category}?order={ordering}”
Have you tried - "/GetNames/{Category}?order={ordering}" in the Uritemplate and in the function