Я хотел бы использовать console.log внутри встроенного шаблона, но не могу найти никаких указаний.
@Component({
selector:"main",
providers: [ItemService],
template:'
<ul>
<li *ngFor="let item of items">
{{console.log(item)}} <----- ???
<p>{{item.name}}</p>
</li>
</ul>
'
})
export class HomeComponent {
private items: Array<ItemModel>;
constructor() {}
}