我正在使用wcf服務,我想根據父類別選擇返回子類別。通過get方法不工作在wcf服務中傳遞參數
這是我的接口:
[ServiceContract]
public interface iServiceRegistration
{
[OperationContract]
[WebInvoke(RequestFormat = WebMessageFormat.Json, BodyStyle =WebMessageBodyStyle.WrappedRequest, ResponseFormat = WebMessageFormat.Json, Method = "GET")]
IEnumerable<SelectListItem> GetSubCategories(int categoryId);
}
public class Service : iServiceRegistration
{
public IEnumerable<SelectListItem> GetSubCategories(int categoryId)
{
//code
}
}
我使用Mozilla瀏覽器的REST客戶端進行測試時,我打電話從其他客戶端這種方法是這樣這樣service.now:
{
"categoryId": "1"
}
然後0來自我的參數categoryId。
任何人都可以告訴我最新的問題?????
嘗試:{「的categoryId」:1} – Fordio 2014-09-30 07:32:19
沒有工作,我不這麼認爲問題是這樣的(意味着參數從靜止客戶端傳遞) – 2014-09-30 07:38:02