私のデータベースをMvc-AngularJsからwcf-restにアップデートしようとすると、エラーが発生していますFailed to load resource: the server responded with a status of 404 (Not Found) http://localhost:9706/EmployeeService.svc/UpdatexyzData/Update/
フィドラーそのからヒットすることは細かいリソースを読み込めませんでした:サーバが404のステータスで応答しました(見つからない)
Service.Js
this.xmlDataUpdate = function (sss) {
var ss = $http({
url: RestApi+"/UpdatexyzData/Update/",
method: "PUT",
data: $httpParamSerializerJQLike(sss),
headers: {
'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded ;charset=utf-8'
}
})
return ss;
}
は、JSON形式のリクエストのですか? –
はいJsonの –