Skip to content
Advertisement

Image didn’t appear in my angular project

I am learning angular by following steps in a book and there’s a task that demanded creating a product component like in Amazon.For each product, we have an image, the product name, the product release date, the rating component and the number of ratings it has. I followed all steps but the image didn’t appear in after compiling my code.Can anyone find where the problem is and thank you.

app.component.ts

JavaScript

products.component.ts

JavaScript

product.component.ts

JavaScript

product.component.html

JavaScript

product.service.ts

JavaScript

rating.component.ts

JavaScript

rating.component.html

JavaScript

index.html

JavaScript

Advertisement

Answer

You have to bind the src attribute of img tag, like below:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement