我知道有$viewContentLoaded
,但它在AngularJS 用范围变量替换占位符之前触发。
我设法通过在我的监听器中设置 0 毫秒的超时来解决这个问题$viewContentLoaded
,但这非常难看。
我正在使用它来解析包含在部分中的 LessCSS 样式表,但是我有一个 URL 前缀字段,在将其传递给 LESS 之前,我需要将其替换为样式表 URL。
这是我的代码(带有我丑陋的黑客):
var AccountController = function($scope, UserService) {
var user = UserService.get();
$scope.username = user.profile.displayName || user.contact;
var bindLESSInit = function($scope, linkElementSelector) {
$scope.$on('$viewContentLoaded', function() {
var linkElement = document.querySelector(linkElementSelector);
if (!linkElement) throw new Error('bindLESSInit: link element not found');
console.log('link href before timeout: ', linkElement.href);
// BAD: outputs "http://localhost:8282/%5B%5BstaticURLPrefix%5D%5D/static/portal/app/less/account.less"
setTimeout(function() {
console.log('link href after timeout: ', linkElement.href);
// GOOD: outputs "http://localhost:8282/static/portal/app/less/account.less"
// clear previous view's styles
less.sheets = less.sheets.filter(function(e) {
return e.getAttribute('class') && e.getAttribute('class').match('view-style');
});
less.sheets.push(linkElement);
less.refresh();
}, 0);
});
};
bindLESSInit($scope, '#account-stylesheet');
};
[...]
这里有一个相关的问题:How can I trigger an event when an angular JS route template has been loaded
我尝试了答案,$routeChangeSuccess
改为使用,但它给出了相同的结果。
干杯