1

保存機能が成功したら、どうすれば ng-bootstrap モーダルを閉じることができますか?

これが私がこれまでに持っているものです:

save(form, activeModal) {
    this.goalsService.createNewGoal(this.team_id, form.value, this.date_created, this.date_modified)
      .subscribe(
        () => {
          form.reset();

          activeModal.dismiss('Successfully created Goal');

        },
        err => alert(`error creating goal ${err}`)
      );

  }
4

2 に答える 2

0

非常に簡単な修正であることがわかりました。私がする必要があったのはactiveModal.dismiss('Successfully created Goal');this.activeModal.dismiss('Successfully created Goal');

于 2016-12-12T03:38:54.687 に答える