2 回答
TA贡献2011条经验 获得超2个赞
既然是REST风格了,就应该使用Url的方式来处理资源,如果需要传递参数就使用Service/Action/id这种形式来传,这里id是参数名了,如:
[WebInvoke(Method = "PUT", RequestFormat = WebMessageFormat.Xml, UriTemplate = "{id}")]
void Update(Atom10ItemFormatter<SyndicationItem> item, int id);
这时你就可以使用http://localhost:8888/Svc/Action/1这种形式把1这个值作为id传递到服务中,在Update方法中,参数id的值就是这个1。
如果你非得使用?id=1这种形式,简单点来说,把这个方法变通成:
[WebInvoke(Method = "PUT", RequestFormat = WebMessageFormat.Xml, UriTemplate = "?id={id}")]
void Update(Atom10ItemFormatter<SyndicationItem> item, int id);
这个方法貌似有点锉,只是我拍脑袋想出来的,登不得大雅之堂,呵呵。
第三种方法,使用Request["id"]来获取Url中的参数也不是不可以啊,不过既然你型REST,就型的像点,使用第一种方法吧。
最后,我觉得WCF和MVC的UrlRouting结合后更爽了,那个ModelBinder没得说,尽早转过去吧。
- 2 回答
- 0 关注
- 719 浏览
添加回答
举报