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


TypeScript template_cloner.TemplateCloner類代碼示例

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


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

示例1: describe

  describe('TemplateCloner', () => {
    var cloner: TemplateCloner;
    var bigTemplate: Element;
    var smallTemplate: Element;

    beforeEach(() => {
      cloner = new TemplateCloner(1);
      bigTemplate = DOM.createTemplate('a<div></div>');
      smallTemplate = DOM.createTemplate('a');
    });

    describe('prepareForClone', () => {
      it('should use a reference for small templates',
         () => { expect(cloner.prepareForClone(smallTemplate)).toBe(smallTemplate); });

      it('should use a reference if the max element count is -1', () => {
        cloner = new TemplateCloner(-1);
        expect(cloner.prepareForClone(bigTemplate)).toBe(bigTemplate);
      });

      it('should use a string for big templates', () => {
        expect(cloner.prepareForClone(bigTemplate)).toEqual(DOM.getInnerHTML(bigTemplate));
      });
    });

    describe('cloneTemplate', () => {

      function shouldReturnTemplateContentNodes(template: Element, importIntoDoc: boolean) {
        var clone = cloner.cloneContent(cloner.prepareForClone(template), importIntoDoc);
        expect(clone).not.toBe(DOM.content(template));
        expect(DOM.getText(DOM.firstChild(clone))).toEqual('a');
      }

      it('should return template.content nodes (small template, no import)',
         () => { shouldReturnTemplateContentNodes(smallTemplate, false); });

      it('should return template.content nodes (small template, import)',
         () => { shouldReturnTemplateContentNodes(smallTemplate, true); });

      it('should return template.content nodes (big template, no import)',
         () => { shouldReturnTemplateContentNodes(bigTemplate, false); });

      it('should return template.content nodes (big template, import)',
         () => { shouldReturnTemplateContentNodes(bigTemplate, true); });
    });

  });
開發者ID:goderbauer,項目名稱:angular,代碼行數:47,代碼來源:template_cloner_spec.ts

示例2: shouldReturnTemplateContentNodes

 function shouldReturnTemplateContentNodes(template: Element, importIntoDoc: boolean) {
   var clone = cloner.cloneContent(cloner.prepareForClone(template), importIntoDoc);
   expect(clone).not.toBe(DOM.content(template));
   expect(DOM.getText(DOM.firstChild(clone))).toEqual('a');
 }
開發者ID:goderbauer,項目名稱:angular,代碼行數:5,代碼來源:template_cloner_spec.ts

示例3: it

 it('should use a string for big templates', () => {
   expect(cloner.prepareForClone(bigTemplate)).toEqual(DOM.getInnerHTML(bigTemplate));
 });
開發者ID:goderbauer,項目名稱:angular,代碼行數:3,代碼來源:template_cloner_spec.ts

示例4: expect

 () => { expect(cloner.prepareForClone(smallTemplate)).toBe(smallTemplate); });
開發者ID:goderbauer,項目名稱:angular,代碼行數:1,代碼來源:template_cloner_spec.ts


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