AngularJs- TypeError :( ...)。success不是函数

时间:2017-04-23 14:40:51

标签: javascript angularjs

我一直在研究一个项目并得到这个我无法解决的错误。

MyApp.controller("HomeController", function ($scope, EmpApi) {

    getEmployees();
    function getEmployees() {
        EmpApi.getEmployees().success(function (emps) {
            $scope.emps = emps;

        })
        .error(function(error){
            $scope.status = 'Unable to load emp data:' + error.message;

        })
    }
});

我正在使用的Demo.js

{{1}}

0 个答案:

没有答案