如果表格在角度上是动态的,如何设置表格控件的初始值?

时间:2019-08-25 20:46:47

标签: javascript html angular

我正在尝试制作fb之类的东西,我有以下问题:

我想像fb一样对每个帖子发表评论,但是我想检查表单提交,主要是用户对哪个帖子发表评论。我该怎么做:

我有以下代码:

<article class="post" *ngFor="let post of posts">

  <div class="post-body">

    <div class="post-content">
      {{ post.content }}
    </div>

    <ul class="comment-area">

      <li>
        <form class="comment-form" [formGroup]="commentForm" (ngSubmit)="onComment()">
          <img class="profile-pic" src="../../assets/profile.jpg">
          <input type="text" 
            class="comment-input" 
            formControlName="comment"
            placeholder="Enter your comment">

          <button type="submit" class="comment-sub">Send</button>
        </form>
      </li>
    </ul>

  </div>
</article>

我在post._id中有帖子ID,但是如何将其传递到TS文件,我尝试了[ngModel],但是角度显示弃用错误...

我有以下TS代码:

commentForm = new FormGroup({
        comment: new FormControl('', [PostValidator.notEmpty]),
        postId: new FormControl('', [Validators.required])
    });

我想以某种方式在commentForm> postId,

上获取帖子ID

请帮助

0 个答案:

没有答案