对ID使用GET方法

时间:2018-09-27 22:15:34

标签: javascript java angularjs

我的应用正在对所有员工使用GET方法。 但是我只想获得像ID这样的Employee。 Web应用程序不按ID调用GET方法。我不知道为什么?

我已经从angularjs编写了JS代码:

$scope.edit = function(id){
        console.log('Pass');
        $http.get('/autoeshop/employees' + id, data, config).then(function(response){
            $scope.id = response['data']['id'];
            $scope.name = response['data']['name'];
            $scope.age = response['data']['age'];
            $scope.dept = response['data']['department'];

            $(".addButton").hide();
            $(".updateButton").show();
            $('#myModalLabel').text("Edit Employee details");
            $('#myModalNorm').modal();
        });

我该如何解决?谢谢。

0 个答案:

没有答案