我在测试角度
keyvalue
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<div *ngFor="let prop of testObj | keyvalue">
<div>key: {{prop.key}}</div>
<div>value: {{prop.value}}<div>
</div> `
})
export class AppComponent {
testObj = { id: 1, name: "Abdul Rafay" }
}
但这给了我一个错误:
ng:///AppModule/AppComponent.html@0:17正在计算src/main.ts引导
我有什么遗漏吗?这是我的
Stackblitz