यह पहले पूछा गया है, और उत्तरों से यह अच्छा नहीं लगता है। मैं इस नमूना कोड के साथ विचार करना चाहता हूं ...
मेरा ऐप सेवा प्रदान करने वाली वर्तमान वस्तु को लोड करता है। कई नियंत्रक हैं जो आइटम को फिर से लोड किए बिना आइटम डेटा में हेरफेर करते हैं।
मेरे नियंत्रक आइटम को फिर से लोड करेंगे यदि यह अभी तक सेट नहीं है, अन्यथा, यह नियंत्रकों के बीच सेवा से वर्तमान में लोड की गई वस्तु का उपयोग करेगा।
समस्या : मैं Item.html को पुनः लोड किए बिना प्रत्येक नियंत्रक के लिए अलग-अलग रास्तों का उपयोग करना चाहूंगा।
1) क्या यह संभव है?
2) यदि यह संभव नहीं है, तो क्या मैं प्रति नियंत्रक के साथ एक बेहतर तरीका प्राप्त कर सकता हूं?
app.js
var app = angular.module('myModule', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/items', {templateUrl: 'partials/items.html', controller: ItemsCtrl}).
when('/items/:itemId/foo', {templateUrl: 'partials/item.html', controller: ItemFooCtrl}).
when('/items/:itemId/bar', {templateUrl: 'partials/item.html', controller: ItemBarCtrl}).
otherwise({redirectTo: '/items'});
}]);
Item.html
<!-- Menu -->
<a id="fooTab" my-active-directive="view.name" href="#/item/{{item.id}}/foo">Foo</a>
<a id="barTab" my-active-directive="view.name" href="#/item/{{item.id}}/bar">Bar</a>
<!-- Content -->
<div class="content" ng-include="" src="view.template"></div>
controller.js
// Helper function to load $scope.item if refresh or directly linked
function itemCtrlInit($scope, $routeParams, MyService) {
$scope.item = MyService.currentItem;
if (!$scope.item) {
MyService.currentItem = MyService.get({itemId: $routeParams.itemId});
$scope.item = MyService.currentItem;
}
}
function itemFooCtrl($scope, $routeParams, MyService) {
$scope.view = {name: 'foo', template: 'partials/itemFoo.html'};
itemCtrlInit($scope, $routeParams, MyService);
}
function itemBarCtrl($scope, $routeParams, MyService) {
$scope.view = {name: 'bar', template: 'partials/itemBar.html'};
itemCtrlInit($scope, $routeParams, MyService);
}
संकल्प।
स्थिति : स्वीकार किए गए उत्तर में अनुशंसित खोज क्वेरी का उपयोग करने से मुझे मुख्य नियंत्रक को फिर से लोड किए बिना अलग-अलग यूआरएल प्रदान करने की अनुमति मिली।
app.js
var app = angular.module('myModule', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/items', {templateUrl: 'partials/items.html', controller: ItemsCtrl}).
when('/item/:itemId/', {templateUrl: 'partials/item.html', controller: ItemCtrl, reloadOnSearch: false}).
otherwise({redirectTo: '/items'});
}]);
Item.html
<!-- Menu -->
<dd id="fooTab" item-tab="view.name" ng-click="view = views.foo;"><a href="#/item/{{item.id}}/?view=foo">Foo</a></dd>
<dd id="barTab" item-tab="view.name" ng-click="view = views.bar;"><a href="#/item/{{item.id}}/?view=foo">Bar</a></dd>
<!-- Content -->
<div class="content" ng-include="" src="view.template"></div>
controller.js
function ItemCtrl($scope, $routeParams, Appts) {
$scope.views = {
foo: {name: 'foo', template: 'partials/itemFoo.html'},
bar: {name: 'bar', template: 'partials/itemBar.html'},
}
$scope.view = $scope.views[$routeParams.view];
}
directives.js
app.directive('itemTab', function(){
return function(scope, elem, attrs) {
scope.$watch(attrs.itemTab, function(val) {
if (val+'Tab' == attrs.id) {
elem.addClass('active');
} else {
elem.removeClass('active');
}
});
}
});
मेरे हिस्से के अंदर की सामग्री के साथ लिपटे हुए हैं ng-controller=...