标签: html angularjs spring-boot
答案 0 :(得分:1)
无需使用2个控制器。
我认为这对你有用。如果没有,请显示回复数据。
app.controller('CategoryController', function($scope, $http) { $http.get("/allCat") .then(function(response) { $scope.categories = response.data.categories; }); });