public interface IService1
{
[OperationContract]
[WebGet(BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json, UriTemplate = "GetEmployeeA?id={id}")]
EmployeeA GetEmployeeA(int id);
[OperationContract]
[WebGet(BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json, UriTemplate = "GetEmployeeJSON?str={str}")]
string GetEmployeeJSON(string str);
}
からのWebGet方法WCFサービスを呼び出す方法を...私は(HTTPGETを試してみました)のparamで:私はangularJSスクリプトを使用して上記の方法を呼び出したい角度のjsスクリプト
$http({ url: yourURL, method: "GET", params: {: params:" ''} });
私はangularJSスクリプトを使用して上記のメソッドを呼び出すしたい...私は(HTTPGETを試してみました)のparam – suhas
$ HTTPと({URL:yourURL、方法: "GET"、paramsは:{:のparams:」 '' }} ;; – suhas