根据ID查询实体

//查询实体
$scope.findOne=function(id){
$http.get('../brand/findOne.do?id='+id).success(
function(response){
$scope.entity= response;
}
);
}

猜你喜欢

转载自www.cnblogs.com/lijun6/p/11520499.html