如何发送从数据库中获取的邮编(邮编ID)到另一个组件?

时间:2019-05-06 19:23:08

标签: node.js angular

代码:

{

但是输出是:

  

解析器错误:意外的令牌[{{post.pNo}}],预期的标识符,关键字或   在ng:///AppModule/ForumComponent.html@44:27中第2列的字符串   z-index: 1; (“
  

2 个答案:

答案 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>