如何使用不同的 http 请求归档主细节概念?
我有一个包含一个或多个孩子的类别列表。然后我有一个详细视图,它应该只显示与父元素相关的表中的内容。
我现在拥有的是这样的:
.controller('CatsCtrl', function($scope $http) {
$scope.goToDetail = function(id) {
$state.go("detail")
$scope.update(id);
}
$http.get(Backand.getApiUrl() + '/1/objects/Card')
.then(function(response) {
$scope.content = response.data.data;
});
})
.controller('DetailCtrl', function($scope $http) {
$http.get(Backand.getApiUrl() + '/1/objects/Card')
.then(function(response) {
$scope.content = response.data.data;
});
})
HTML
<div ng-repeat="cat in content" class="animated lightSpeedIn">
<a href="#/details/{{cat.id}}" nav-transition="none"><div ng-style="{'background': 'url(' + cat.catBgUrl + ')','background-repeat': 'no-repeat','background-size': '100% 100%','display': 'block','width': '100%','height': '25vh' }" class="bgcat center">
<div class="inner">
<h1>{{cat.catName}}</h1>
<h4>{{cat.catSubtitle}}</h4>
<img src="img/home/open.png" alt="">
</div>
</div></a>
</div>
路线
.state('details', {
url: '/details/:id',
templateUrl: 'templates/detail.html',
controller: "DetailCtrl",
cache: false
})
.state('cats', {
url: '/cats',
templateUrl: 'templates/cats.html',
controller: "CatsCtrl",
cache: false
})
自从 12 小时以来,我一直在做这件事,但没有取得任何进展。我使用 backand.com 获取数据。你能分享一个链接或帮助我一点我如何用 3 个不同的 http 请求来存档它吗?
非常感谢任何帮助!