我的javascript方法 -
visitorApp.controller('LoginController', function ($scope,$http) {
$scope.submit = function (isValid) {
if (isValid) {
var loginModel = {
UserName: $scope.UserName,
PassWord: $scope.Password
};
$http.post(
'/api/VisitorWeb/VerfiyLogin',
JSON.stringify(loginModel),
{
headers: {
'Content-Type': 'application/json'
}
}
).success(function (data) {
alert("Hi" +data);
$scope.message = data;
});
}
}
});
我的网络API方法 -
[HttpPost]
public UserLoginDomainModel VerifyLogin(UserLoginDomainModel loginModel)
{
//do some business logic
return loginModel;
}
我的webapiconfig文件
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{action}"
);
}
}
我从服务器获得404响应。
"NetworkError: 404 Not Found - http://localhost:43516/api/VisitorWeb/VerfiyLogin"
我试着按照这个链接 POSTing from Angular to .net WebAPI 但是有些它对我不起作用。
答案 0 :(得分:2)
我认为你这里有一个错字:
$http.post(
'/api/VisitorWeb/VerfiyLogin',
JSON.stringify(loginModel),
{
headers: {
'Content-Type': 'application/json'
}
}
您的服务方法名为VerifyLogin,而不是VerfiyLogin。