Angular js $ http 404调用WebApi

时间:2015-09-30 14:37:21

标签: javascript json angularjs jquery-mobile angularjs-ng-repeat

我正在尝试使用“$ http”调用我的网络服务。如果拨打“$ ajax”工作正常。

示例Jquery $ Ajax工作正常。

$.ajax({
        type: "Get",
        crossDomain: true,
        contentType: "application/json; charset=utf-8",
        url: "http://localhost:60237/api/Get/Work",
        data: { cdUser: 1},
        dataType: "json",
        success: onDataReceived,
        error: onDataError
    });
    function onDataReceived(data) {
    }
    function onDataError() {
    }

示例Angular $ htpp(不工作)

app.controller('alertxxController', function ($scope, $http) {

    $http({
        method: 'GET',
        url: 'http://localhost:60237/api/Get/Work',
        params: 'cdUser=1'
    }).success(function (data) {
        alert("ok");
    }).error(function () {
        alert("error");
    });



});

真的不知道为什么不这样打电话。我无法识别错误,返回404(未找到)。

2 个答案:

答案 0 :(得分:1)

我认为你的" params"选项是错误的。

试试这个:

$http({
        method: 'GET',
        url: 'http://localhost:60237/api/Get/Work',
        params: { cdUser: 1}
    }).success(function (data) {
        alert("ok");
    }).error(function () {
        alert("error");
    });
});

答案 1 :(得分:0)

我认为角度为$ http的语法是

$http.get('url here').success(function (response) {}).error(function () {});