如何使用key=value的参数形式向WCF REST POST数据

使用WCF搭建了REST风格的服务接口,POST的数据以JSON或XML都可以通过,但现在想将参数以key1=value1&key2=value2的形式提交,请问如何实现?

12345678_0001
浏览 720回答 2
2回答

森林海

既然是REST风格了,就应该使用Url的方式来处理资源,如果需要传递参数就使用Service/Action/id这种形式来传,这里id是参数名了,如:&nbsp; &nbsp; &nbsp; &nbsp;[WebInvoke(Method = "PUT", RequestFormat = WebMessageFormat.Xml, UriTemplate = "{id}")] &nbsp; &nbsp; &nbsp; &nbsp;void Update(Atom10ItemFormatter<SyndicationItem> item, int id);这时你就可以使用http://localhost:8888/Svc/Action/1这种形式把1这个值作为id传递到服务中,在Update方法中,参数id的值就是这个1。如果你非得使用?id=1这种形式,简单点来说,把这个方法变通成:&nbsp; &nbsp; &nbsp; &nbsp;[WebInvoke(Method = "PUT", RequestFormat = WebMessageFormat.Xml, UriTemplate = "?id={id}")] &nbsp; &nbsp; &nbsp; &nbsp;void Update(Atom10ItemFormatter<SyndicationItem> item, int id);这个方法貌似有点锉,只是我拍脑袋想出来的,登不得大雅之堂,呵呵。第三种方法,使用Request["id"]来获取Url中的参数也不是不可以啊,不过既然你型REST,就型的像点,使用第一种方法吧。最后,我觉得WCF和MVC的UrlRouting结合后更爽了,那个ModelBinder没得说,尽早转过去吧。
打开App,查看更多内容
随时随地看视频慕课网APP