Angular напишите мне эту ошибку:
ERROR in Errors parsing template: Unexpected closing tag "tr". It may
happen when the tag has already been closed by another tag. For more
info see
https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags ("
{{contact.phone}}
</td> [ERROR ->]</tr> </table>"): D:/data/07_AngularContactApp/ContactsApp/src/main/frontend/src/app/contacts-view/contacts-view.component.html@24:2
это моё определение:
<table>
<tr>
<th>id </th>
<th> name</th>
<th>surname </th>
<th>email</th>
<th>phone</th>
</tr>
<tr *ngFor"let contact in contacts">
<td> {{contact.id}}
</td>
<td>
{{contact.name}}
</td>
<td>
{{contact.surname}}
</td>
<td>
{{contact.email}}
</td>
<td>
{{contact.phone}}
</td>
</tr>
</table>
Может кто-нибудь подсказать, в чем проблема? На первый взгляд кажется, что шаблон html отлично, но я не очень хорошо знаю, как работать с * ngFor. Спасибо, что подскажите, как решить эту проблему.