$rootScope
オブジェクトをディレクティブのtemplateUrlに入れることはできますか?
これは私のディレクティブの機能である場合、私は、意味:私はtemplateUrlの関数内で$ rootScopeオブジェクトを得るのですか
function AttributesCard() {
return {
restrict: "AE",
templateUrl: function ($rootScope) {
return $rootScope.baseUrl + "/attributesCard.directive.html";
},
controller: AttributesCardController,
controllerAs: "vm",
scope: {
educationPlace: "=",
privileges: "="
},
bindToController: true
};
}
?私はそれの中で他のものを見ている。あるいは、おそらく$ rootScopeの代わりに私のためにこのデータを取得するかもしれないサービス。
おかげで、
可能性のある重複した[ディレクティブtemplateUrlから$ rootScope変数にアクセスする方法](https://stackoverflow.com/questions/36007277/how-to-access-rootscope-variable-from-directive-templateurl) – Vivz