是否可以使用 rootscope 的可变内部范围?如果是,那怎么办?
例如,我想在范围的 sub_menu 属性中设置 $rootScope.user_name 的值。
var app = angular.module('myApp', []).run(function ($rootScope) {$rootScope.user_name = "A to Z Traders";$rootScope.user_role="Admin";});
app.controller('headerCtrl', function($scope) {
$scope.menu=[
{menu_name : "Seller's Name", menu_id: "user", sub_menu:[{$rootScope.user_name}, "Profile", "Add Brand Owner", "Logout"]}
];
});