Using interpolation to set a property works with this code:
This work for me.
<span *ngFor="let car of Car; let i = index;" >
<img src="car/{{car.id}}">
</span>
but it does not work using property binding like this:
<span *ngFor="let car of Car; let i = index;" >
<img [src]="car/car.id">
</span>
What should I do?