當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript angular2.Injector類代碼示例

本文整理匯總了TypeScript中angular2/angular2.Injector的典型用法代碼示例。如果您正苦於以下問題:TypeScript Injector類的具體用法?TypeScript Injector怎麽用?TypeScript Injector使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Injector類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: beforeEach

		beforeEach(() => {
			injector = Injector.resolveAndCreate([
				MockBackend
			]);
			backend = injector.get(MockBackend);
			response = new Response({ body: LOGO_GLYPH_HTML });
		});
開發者ID:Luphia,項目名稱:Laria,代碼行數:7,代碼來源:logo.spec.ts

示例2: beforeEach

  beforeEach(() => {
    injector = Injector.resolveAndCreate([
      HTTP_BINDINGS,
      MockBackend,
      BaseResponseOptions,
      provide(Http, {
        useFactory: (backend, baseResponseOptions) => {
          return new Http(backend, baseResponseOptions);
        },
        deps: [MockBackend, BaseResponseOptions]
      }),
      TickerLoader
    ]);
    backend = injector.get(MockBackend);
    baseResponseOptions = injector.get(BaseResponseOptions);
    http = injector.get(Http);
    tickerLoader = injector.get(TickerLoader);

    backend.connections.subscribe((c:MockConnection) => {
      var symbol:string[] =/.*stocks\?symbol=(.*)/.exec(c.request.url);
      switch(symbol[1]) {
        case 'a':
          c.mockRespond(new Response(baseResponseOptions.merge({
            body: [{
              "company_name":"Agilent Technologies, Inc. Common Stock","symbol":"A"
            }]
          })))
          break;
        default:
          connection = c;
      }
    });
  });
開發者ID:LongLiveCHIEF,項目名稱:aim,代碼行數:33,代碼來源:ticker_loader_test.ts

示例3: describe

	describe('IconStore', () => {
		var injector: Injector;
		var store: IconStore;
		var backend: MockBackend;
		var glyph: Node;
		var response;

		beforeEach(() => {
			injector = Injector.resolveAndCreate([
				BaseRequestOptions,
				MockBackend,
				bind(Http).toFactory((connectionBackend: ConnectionBackend, defaultOptions: BaseRequestOptions) => {
					return new Http(connectionBackend, defaultOptions);
				}, [
					MockBackend,
					BaseRequestOptions
				]),
				bind(IconStore).toClass(IconStore, [
					Http
				])
			]);
			backend = injector.get(MockBackend);
			store = injector.get(IconStore);
			response = new Response({ body: SVG_GLYPH_HTML });
			glyph = createGlyphNode();
		});

		afterEach(() => backend.verifyNoPendingRequests());

		describe('.get', () => {
			it('should return an Observable', () => {
				expect(ObservableWrapper.isObservable(store.get(FAKE_URL))).toBe(true);
			});
			it('return value should be an SVG element', inject([AsyncTestCompleter], (async) => {
				ObservableWrapper.subscribe(backend.connections, (connection: MockConnection) => connection.mockRespond(response));
				ObservableWrapper.subscribe(store.get(FAKE_URL), (svg) => {
					expect(svg.isEqualNode(glyph)).toBe(true);
					async.done();
				});
			}));
			it('should only fire one request for the same path and resolve from cache', inject([AsyncTestCompleter], (async) => {
				let url = 'ofor/' + FAKE_URL;
				let bc = new BackendConnectionSpy();
				ObservableWrapper.subscribe(backend.connections, (connection: MockConnection) => {
					bc.onEstablish();
					connection.mockRespond(response);
				});
				ObservableWrapper.subscribe(store.get(url), () => {
					ObservableWrapper.subscribe(store.get(url), () => {
						expect(bc.onEstablish.calls.count()).toEqual(1);
						async.done();
					});
				});
			}));
		});
	});
開發者ID:Luphia,項目名稱:Laria,代碼行數:56,代碼來源:icon.spec.ts

示例4: beforeEach

		beforeEach(() => {
			injector = Injector.resolveAndCreate([
				BaseRequestOptions,
				MockBackend,
				bind(Http).toFactory((connectionBackend: ConnectionBackend, defaultOptions: BaseRequestOptions) => {
					return new Http(connectionBackend, defaultOptions);
				}, [
					MockBackend,
					BaseRequestOptions
				]),
				bind(IconStore).toClass(IconStore, [
					Http
				])
			]);
			backend = injector.get(MockBackend);
			store = injector.get(IconStore);
			response = new Response({ body: SVG_GLYPH_HTML });
			glyph = createGlyphNode();
		});
開發者ID:Luphia,項目名稱:Laria,代碼行數:19,代碼來源:icon.spec.ts

示例5: bootstrap

bootstrap(MyAppComponent).then(result => {
  var injector: Injector = result.injector;
  var loader: DynamicComponentLoader = injector.get(DynamicComponentLoader);

  var dict = {
    'schedule.html': SchedulePage,
    'add.html': AddItemPage
  };

  OnsTabElement.prototype._createPageElement = function(page, callback) {
    if (dict[page]) {
      loader.loadIntoNewLocation(dict[page], new ElementRef(result._hostComponent.hostView, 0)).then(componentRef => {
        callback(componentRef.location.domElement);
      });
    }
    else {
      throw new Error('Page ' + page + ' does not exist.');
    }
  };
});
開發者ID:argelius,項目名稱:onsenui-angular2-demo,代碼行數:20,代碼來源:app.ts

示例6: describe

	describe('logo', () => {
		var injector: Injector;
		var backend: MockBackend;
		var response;
		
		beforeEachBindings(() => [
			BaseRequestOptions,
			MockBackend,
			bind(Http).toFactory((connectionBackend: ConnectionBackend, defaultOptions: BaseRequestOptions) => {
				return new Http(connectionBackend, defaultOptions);
			}, [
				MockBackend,
				BaseRequestOptions
			]),
			bind(IconStore).toClass(IconStore, [
				Http
			])
		]);

		beforeEach(() => {
			injector = Injector.resolveAndCreate([
				MockBackend
			]);
			backend = injector.get(MockBackend);
			response = new Response({ body: LOGO_GLYPH_HTML });
		});
		
		afterEach(() => backend.verifyNoPendingRequests());
		
		it('should append an svg as child of self', inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
			let html = '<div class="logo" logo></div>';
			ObservableWrapper.subscribe(backend.connections, (connection: MockConnection) => {
				// console.log(connection);
				connection.mockRespond(response)
			});
			tcb
				.overrideTemplate(Test, html)
				.createAsync(Test)
				.then((rootTC) => {
					rootTC.detectChanges();
					let logo: Element = DOM.querySelector(rootTC.nativeElement, '.logo');
					let prefixSelector = isNativeShadowDOMSupported ? '* /deep/ ' : ''; // soon use '>>>' https://www.chromestatus.com/features/6750456638341120
					// console.log(logo.firstChild, prefixSelector);
					// expect(logo.querySelector(prefixSelector + 'svg')).not.toBe(null);
					async.done();
				});
		}));
	});
開發者ID:Luphia,項目名稱:Laria,代碼行數:48,代碼來源:logo.spec.ts

示例7: require

require('reflect-metadata');
require('traceur-runtime');
import {httpInjectables, jsonpInjectables, Http, Jsonp} from './http';
import {Injector} from 'angular2/angular2';
export * from './http';

/**
 * TODO(jeffbcross): export each as their own top-level file, to require as:
 * require('http/http'); require('http/jsonp');
 */
export var http = Injector.resolveAndCreate([httpInjectables]).get(Http);
export var jsonp = Injector.resolveAndCreate([jsonpInjectables]).get(Jsonp);
開發者ID:goderbauer,項目名稱:angular,代碼行數:12,代碼來源:index.ts

示例8: require

require('reflect-metadata');
require('traceur-runtime');
import {HTTP_BINDINGS, JSONP_BINDINGS, Http, Jsonp} from './http';
import {Injector} from 'angular2/angular2';
export * from './http';

/**
 * TODO(jeffbcross): export each as their own top-level file, to require as:
 * require('http/http'); require('http/jsonp');
 */
export var http = Injector.resolveAndCreate([HTTP_BINDINGS]).get(Http);
export var jsonp = Injector.resolveAndCreate([JSONP_BINDINGS]).get(Jsonp);
開發者ID:lavinjj,項目名稱:angular,代碼行數:12,代碼來源:index.ts


注:本文中的angular2/angular2.Injector類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。