本文整理汇总了TypeScript中angular.bootstrap函数的典型用法代码示例。如果您正苦于以下问题:TypeScript bootstrap函数的具体用法?TypeScript bootstrap怎么用?TypeScript bootstrap使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bootstrap函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('.service should have right return type', (done) => {
// NOTICE: Manual testing in VSCode with mouse hover
module.config(($provide: Provide) => {
// Should have type of Provider<any>
const provider0 = $provide.service('customService0', MyServiceFn)
// Should have type of Provider<MyServiceClass>
const provider1 = $provide.service('customService1', MyServiceClass)
// Should have type of Provider<any>
const provider2 = $provide.service('customService2', ['$controller', MyServiceFn])
// Should have type of Provider<MyServiceClass>
const provider3 = $provide.service('customService3', ['$controller', MyServiceClass])
}).run((customService0, customService1, customService2, customService3) => {
expect(customService0 instanceof MyServiceFn).toBeTruthy()
expect(customService1 instanceof MyServiceClass).toBeTruthy()
expect(customService2 instanceof MyServiceFn).toBeTruthy()
expect(customService3 instanceof MyServiceClass).toBeTruthy()
done()
})
angular.bootstrap(element, ['custom'])
})
示例2: InitEnvironment
InitEnvironment(() => {
let app = angular.module('app', [angularUiRouter as string , angularMaterial as string]);
Registe(app, AppController);
Registe(app, Config);
Registe(app, Router);
angular.bootstrap(document.documentElement, ['app']);
});
示例3: beforeEach
beforeEach(inject( function ($rootScope, $compile) {
scope = $rootScope.$new();
element = angular.element('<div main-directive></div>');
angular.bootstrap(element[0],['testModule']);
element = $compile(element)(scope);
scope.$digest();
}));
示例4: it
it('destroys the angular scope and empties the targetDomElement if angular is bootstraped to targetDomElement', () => {
const targetDomElement = document.createElement('div');
const scopeDestroySpy = jest.fn();
const legacyPlatform = new LegacyPlatformService({
...defaultParams,
targetDomElement,
});
// simulate bootstraping with a module "foo"
angular.module('foo', []).directive('bar', () => ({
restrict: 'E',
link($scope) {
$scope.$on('$destroy', scopeDestroySpy);
},
}));
targetDomElement.innerHTML = `
<bar></bar>
`;
angular.bootstrap(targetDomElement, ['foo']);
legacyPlatform.stop();
expect(targetDomElement).toMatchSnapshot();
expect(scopeDestroySpy).toHaveBeenCalledTimes(1);
});
示例5: it
it('should not define angular builtins before the app is bootstrapped', () => {
const element = div()
module('a', ['bcherny/ngimport'])
expect($http).toBeUndefined()
expect($rootScope).toBeUndefined()
bootstrap(element, ['a'])
element.remove()
})
示例6: onInit
this._loadRequiredComponents(() => {
this._angularConfig();
this._angularRun();
// start angular app
angular.bootstrap(document, [APP_NAME]);
// invoke initialization event
if (undefined != onInit) {
onInit();
}
});