//查询实体 $scope.findOne=function(id){ $http.get(‘../brand/findOne.do?id=‘+id).success( function(response){ $scope.entity= response; } ); }
根据ID查询实体
原文:https://www.cnblogs.com/lijun6/p/11520499.html