@dynastech/angular-lazyinjector
v0.2.1
Published
Angular enhancement module for oclazyload
Downloads
7
Readme
Angular LazyInjector
Angular enhancement module for oclazyload, inject module or service synchronization
Installation
npm install angular oclazyload @dynastech/angular-lazyinjector --save
Usage
with global
<script src="path/to/angular.js"></script>
<script src="path/to/ocLazyLoad.js"></script>
<script src="path/to/angular-lazyinjector.js"></script>
<script>
angular.module('myApp', ['dynastech.lazyInjetor'])
</script>
with commonjs
var angular = require('angular')
var lazyInjector = require('@dynastech/angular-lazyinjector')
angular.module('myApp', [lazyInjector])
with amd
define(['angular', '@dynastech/angular-lazyinjector'], function (angular, lazyInjector) {
angular.module('myApp', [lazyInjector])
})
using lazyInjector
service
ngModule.controller('myController', ['lazyInjector', function (lazyInjector) {
// Your code here
}])
using lazyInjector
jquery/jqlite function, it can invoke before or after angular.bootstrap
var lazyInjector = angular.element(document).lazyInjector()
// Your code here
angular.boostrap(document, ['myApp'])
angular.boostrap(document, ['myApp'])
// Your code here
var lazyInjector = angular.element(document).lazyInjector()
Documentation
Register a module use registerModule
lazyInjector.registerModule(name)
name
: string | string[], module name, the module must be loaded before inject
var ngResource = require('angular-resource')
lazyInjector.registerService(ngResource)
Register a service use registerService
lazyInjector.registerService(type, args)
type
: string, service type, it can be one of angular.module()
return module's function
args
: the arguments of module's function
lazyInjector.registerService('controller', 'myController', ['$http', function ($http) {
}])
License
MIT License
Copyright (c) 2017 Dynastech
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.