任何人都可以帮我找一个关于Angular 2的ag-grid的好的和最近的(工作)教程吗?
我无法在官方ag-grid网站上获得有关工作的教程......
也许有些代码可以帮助我吗?
提前致谢!
错误:EXCEPTION:./ MyGridApplicationComponent类中的错误MyGridApplicationComponent - 内联模板:1:4导致:没有BaseComponentFactory的提供程序!
现在AgGridModule.forRoot()正在运行,首先它不被允许或者其他......
又出现了一个新错误:
ERROR in Error遇到静态解析符号值。调用函数' AgGridModule',不支持函数调用。考虑使用对导出函数的引用替换函数或lambda,在C:/ Users / Milan / Documents / Octopus / Octopus 2.0 / src / app / app.module.ts中解析符号AppModule,解决C:/ Users中的符号AppModule / Milan / Documents / Octopus / Octopus 2.0 / src / app / app.module.ts
答案 0 :(得分:3)
我对AgGridModule.forRoot()也没有运气。但是,在使用网格的模块中导入AgGridModule会为我修复此错误。
@NgModule({
imports: [
...
AgGridModule.withComponents([])
]...
答案 1 :(得分:1)
我正在使用Angular2-CLI https://github.com/angular/angular-cli,但Grid-Author本身的这些示例就像一个魅力:https://github.com/ceolter/ag-grid-angular-example/tree/master/angular-cli
这个例子的好处是:你可以克隆它,启动一个“ng服务”,你有一套运行的所有例子。我建议你试一试,否则让这个Grid工作非常麻烦。
我也搜索了很长一段时间,但是由于最近发生的变化和重新命名,除了GitHub-Repo本身之外的其他例子不再适用了。我必须找到困难的方法。