我正在使用angular 1.6作为我的项目和angular-ui-routing用于使用PugJs为HTML模板进行路由。 我试图在我的应用程序中实现Lazyload,但不知何故它不起作用可能是由于玉。 代码:
var app = angular.module('myApp',['ui.router','oc.lazyLoad']);
app.config(['$ocLazyLoadProvider', function($ocLazyLoadProvider
{
$ocLazyLoadProvider.config({
debug: true,
modules: [{
name: 'js',
files: ['js/*']
}]
});
}]);
.state("exampleState", {
url: '/example',
templateUrl: '/example',
controller:'exampleCtrl',
resolve: {
deps: ['$ocLazyLoad', function($ocLazyLoad) {
return $ocLazyLoad.load({
files: ['/js/exampleCtrl.js']
})
}]
}
})
控制器:
app.controller('exampleCtrl',function($scope){
console.log('controller loaded');
});
在前端我使用node将这些jade转换为HTML,所以当路由服务访问'templateUrl'时,它会被重定向到这段代码:
app.get('/example', function(req, res) {
res.render('/example');
});
这会在视图中加载example.jade。 我在控制台中得到这个
[$ controller:ctrlreg]名称为“exampleCtrl”的控制器未注册。
即使在DOM中加载了控制器文件,并且视图也没有渲染。欢迎任何有关问题的帮助。谢谢
答案 0 :(得分:5)
经过太多搜索并尝试找到解决方案后,问题是构造控制器时模块的全局变量。而不是使用
app.controller('exampleCtrl',function($scope){
console.log('controller loaded');
});
我使用了angular.module('myApp').controller(,,,);
答案 1 :(得分:1)
我认为你应该这样做有点不同。试试这个:
$stateProvider.state('exampleState', {
url: "/example",
views: {
"exampleLazyLoadView": {
controller: 'exampleCtrl',
templateUrl: '/example.html'
}
},
resolve: { // Any property in resolve should return a promise and is executed before the view is loaded
loadMyCtrl: ['$ocLazyLoad', function($ocLazyLoad) {
return $ocLazyLoad.load('/js/exampleCtrl.js');
}]
}
});