AngularJS
Caricamento lento
Ricerca…
Osservazioni
- Se le tue dipendenze caricate pigre richiedono altre dipendenze caricate pigre assicurati di caricarle nell'ordine corretto!
angular.module('lazy', [
'alreadyLoadedDependency1',
'alreadyLoadedDependency2',
...
{
files: [
'path/to/lazily/loaded/dependency1.js',
'path/to/lazily/loaded/dependency2.js', //<--- requires lazily loaded dependency1
'path/to/lazily/loaded/dependency.css'
],
serie: true //Sequential load instead of parallel
}
]);
Preparare il tuo progetto per il caricamento lento
Dopo aver incluso oclazyload.js
nel tuo file di indice, dichiara ocLazyLoad
come dipendenza in app.js
//Make sure you put the correct dependency! it is spelled different than the service!
angular.module('app', [
'oc.lazyLoad',
'ui-router'
])
uso
Per caricare pigramente i file, iniettare il servizio $ocLazyLoad
in un controller o in un altro servizio
.controller('someCtrl', function($ocLazyLoad) {
$ocLazyLoad.load('path/to/file.js').then(...);
});
I moduli angolari verranno automaticamente caricati in angolari.
Altre varianti:
$ocLazyLoad.load([
'bower_components/bootstrap/dist/js/bootstrap.js',
'bower_components/bootstrap/dist/css/bootstrap.css',
'partials/template1.html'
]);
Per un elenco completo delle varianti visita la documentazione ufficiale
Utilizzo con router
UI-Router:
.state('profile', {
url: '/profile',
controller: 'profileCtrl as vm'
resolve: {
module: function($ocLazyLoad) {
return $ocLazyLoad.load([
'path/to/profile/module.js',
'path/to/profile/style.css'
]);
}
}
});
ngRoute:
.when('/profile', {
controller: 'profileCtrl as vm'
resolve: {
module: function($ocLazyLoad) {
return $ocLazyLoad.load([
'path/to/profile/module.js',
'path/to/profile/style.css'
]);
}
}
});
Utilizzando l'iniezione di dipendenza
La seguente sintassi consente di specificare le dipendenze nel module.js
anziché nelle specifiche esplicite quando si utilizza il servizio
//lazy_module.js
angular.module('lazy', [
'alreadyLoadedDependency1',
'alreadyLoadedDependency2',
...
[
'path/to/lazily/loaded/dependency.js',
'path/to/lazily/loaded/dependency.css'
]
]);
Nota : questa sintassi funzionerà solo con moduli caricati pigramente!
Usando la direttiva
<div oc-lazy-load="['path/to/lazy/loaded/directive.js', 'path/to/lazy/loaded/directive.html']">
<!-- myDirective available here -->
<my-directive></my-directive>
</div>
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow