在创建了一个新组件之后,我在几乎所有的测试中都收到了这个错误: SampleComponent > should create
Failed: Component TuzGraphComponent is not part of any NgModule or the module has not been imported into your module.
Error: Component TuzGraphComponent is not part of any NgModule or the module has not been imported into your modul
我试图将PrimeNG数据表与angular2一起使用,但它似乎不起作用。我已经安装了PrimeNG和npm。在我的组件中我导入
import {DataTableModule,SharedModule} from 'primeng/primeng';
然后在模板中使用
<p-dataTable [value]="students">
<p-column *ngFor="let col of cols" [field]="col.field" [header]="col.header"&g
我有一个自定义组件,它获取与ngModel绑定的对象。
在组件内部,我读取了对象的数字值,并将其显示在primeng number input中。
问题是primeng number input的(ngModelChange)事件只在输入失去焦点时触发。
在我们的应用程序中,这是一个问题,因为我们通常使用keyup.enter跳转到不同的输入。当使用keyup.enter时,输入没有失去焦点,因此ngModel没有改变。
我已经为组件构建了一个方法,它首先使输入失去焦点。这在更改ngModel时非常有效。然后,我们将ngModel设置为null以清除输入,但这只在第一次有效。
第二次时,该值只