angular2 – 在Angular 2中等价于$compile

前端之家收集整理的这篇文章主要介绍了angular2 – 在Angular 2中等价于$compile前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想手动编译一些包含指令的HTML。在Angular 2中相当于$ compile是什么?

例如,在Angular 1中,我可以动态编译一个HTML的片段并将其附加到DOM:

@H_404_3@var e = angular.element('<div directive></div>'); element.append(e); $compile(e)($scope);
注意:由于@BennyBottema在注释中提及,DynamicComponentLoader现在已被弃用,因此这个答案也是如此。

Angular2没有任何$compile等效。你可以使用DynamicComoponentLoader和hack with ES6类来动态编译你的代码(见plunk):

@H_404_3@import {Component,DynamicComponentLoader,ElementRef,OnInit} from 'angular2/core' function compileToComponent(template,directives) { @Component({ selector: 'fake',template,directives }) class FakeComponent {}; return FakeComponent; } @Component({ selector: 'hello',template: '<h1>Hello,Angular!</h1>' }) class Hello {} @Component({ selector: 'my-app',template: '<div #container></div>',}) export class App implements OnInit { constructor( private loader: DynamicComponentLoader,private elementRef: ElementRef,) {} ngOnInit() {} { const someDynamicHtml = `<hello></hello><h2>${Date.now()}</h2>`; this.loader.loadIntoLocation( compileToComponent(someDynamicHtml,[Hello]) this.elementRef,'container' ); } }

但它只会工作,直到html解析器里面的angular2核心。

猜你在找的Angularjs相关文章