代码:
{
但是输出是:
解析器错误:意外的令牌
[{{post.pNo}}]
,预期的标识符,关键字或 在ng:///AppModule/ForumComponent.html@44:27
中第2列的字符串z-index: 1;
(“
答案 0 :(得分:1)
您需要将input
包裹在应用库中并用引号引起来:
<app-gallery [postno]="post?.pNo"></app-gallery>
假设您在使用该组件的组件中拥有post
数据对象,并且它具有属性pNo
。如果pNo
对象上没有post
,请根据需要使用与ID匹配的属性。
要启用安全插值,您可以添加?
答案 1 :(得分:1)
只要您在内部帖子中没有p
,此方法就可以使用 <div class="news" *ngFor="let post of list">
<mat-accordion class="accordion">
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title >{{post.title}}</mat-panel-title>
<div class="w3-right">
<mat-panel-title >{{post.date}}</mat-panel-title>
</div>
</mat-expansion-panel-header>
{{post.description}}
<app-gallery [postno]="post?.pNo"></app-gallery>
</mat-expansion-panel>
</mat-accordion>
</div>