我已经成功将Angular 2(Alpha 44)与D3.js集成在一起:
<html>
<head>
<title>Angular 2 QuickStart</title>
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<script>
System.config({packages: {'app': {defaultExtension: 'js'}}});
System.import('app/app');
</script>
</head>
<body>
<my-app>Loading...</my-app>
</body>
</html>
app.js:
/// <reference path="./../../typings/tsd.d.ts" />
import {Component, bootstrap, ElementRef} from 'angular2/angular2';
@Component({
selector: 'my-app',
template: '<h1>D3.js Integrated if background is yellow</h1>',
providers: [ElementRef]
})
class AppComponent {
elementRef: ElementRef;
constructor(elementRef: ElementRef) {
this.elementRef = elementRef;
}
afterViewInit(){
console.log("afterViewInit() called");
d3.select(this.elementRef.nativeElement).select("h1").style("background-color", "yellow");
}
}
bootstrap(AppComponent);
一切正常。但是ElementRef的Angular 2文档指出以下内容:
当需要直接访问DOM时,请使用此API作为最后的手段。改用Angular提供的模板和数据绑定。另外,您可以查看{@link Renderer},该API提供了即使不支持直接访问本机元素也可以安全使用的API。依赖于直接DOM访问,可以在应用程序和呈现层之间建立紧密的耦合,这将使得不可能将两者分开并将应用程序部署到Web Worker中。
现在出现了一个问题,如何将D3.js与Renderer API集成在一起?