我正在研究我的第一个AngularJS应用程序,以便学习该框架.
我目前正在寻找一种能够处理嵌套资源的惯用方法.
我的区域包含有公寓的建筑物.一个单位只在一个建筑物内,只在一个区域内转入.
在我的数据库模型中,我不需要将区域Id与平面对象一起存储,其父级(建筑物ID)就足够了.
下面是我写的一个最小例子来说明这个概念.我根据我在Google I / O的视频中看到的内容:http://www.youtube.com/watch?v=HCR7i5F5L8c
我的问题是:如何实例化特定的Flat资源?我拥有URL中所需的所有信息,但它并不严格对应我的模型(缺少区域ID).
var app = angular.module('neighborhoodApp',[ 'ngResource','ngRoute' ]); angular.module('neighborhoodApp') .factory('Area',function ($resource) { return $resource('/areas/:id',{ 'id': '@_id' }); }); angular.module('neighborhoodApp') .factory('Building',function ($resource) { return $resource('/areas/:aid/buildings/:id',{ 'id': '@_id','aid': '@area_id' }); }); angular.module('neighborhoodApp') .factory('Flat',function ($resource) { return $resource('/areas/:aid/buildings/:id/flats/:id','bid': '@building_id' // 'aid': '@area_id' => my model doesn't have an area id,having a building id attached to a flat is enough to find the area }); }); angular.module('neighborhoodApp') .controller('AreaListCtrl',function (Area) { this.areas = Area.query(); }); angular.module('neighborhoodApp') .controller('AreaShowCtrl',function ($routeParams,Area) { this.area = Area.get({ id: $routeParams.aid }); }); angular.module('neighborhoodApp') .controller('BuildingListCtrl',function (Building) { this.buildings = Building.query(); }); angular.module('neighborhoodApp') .controller('BuildingShowCtrl',Building) { this.building = Building.get({ aid: $routeParams.aid,id: $routeParams.rid }); }); angular.module('neighborhoodApp') .controller('FlatShowCtrl',function (Flat) { this.flats = Flat.query(); }); // What is the idiomatic way to pass the area id (from $routeParams.aid) // so that the server can be queried successfully angular.module('neighborhoodApp') .controller('FlatListCtrl',Flat) { this.flat = Flat.get({ bid: $routeParams.bid,id: $routeParams.rid }); }); app.config(function ($routeProvider) { $routeProvider .when('/areas',{ templateUrl: 'views/area/list.html',controller: 'AreaListCtrl',controllerAs: 'list' }) .when('/areas/:aid',{ templateUrl: 'views/area/show.html',controller: 'AreaShowCtrl',controllerAs: 'show' }) .when('/areas/:aid/buildings',{ templateUrl: 'views/building/list.html',controller: 'BuildingListCtrl',controllerAs: 'list' }) .when('/areas/:aid/buildings/:bid',{ templateUrl: 'views/building/show.html',controller: 'BuildingShowCtrl',controllerAs: 'show' }) .when('/areas/:aid/buildings/:bid/flats',{ templateUrl: 'views/flat/list.html',controller: 'FlatShowCtrl',controllerAs: 'list' }) .when('/areas/:aid/buildings/:bid/flats/:fid',{ templateUrl: 'views/flat/show.html',controller: 'FlatListCtrl',controllerAs: 'show' }) .otherwise({ redirectTo: '/areas' }); });
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。