ボタンをクリックして、ブートストラップモーダルポップアップを開きます。モーダルポップアップには、送信ボタン付きのフィールドがいくつかあります。データの保存が完了したときにのみポップアップを閉じたいと思います。私はユーザーがボタンを押した直後にポップアップを閉じるので、データを消すことはできません。タイスクリプトを使ってポップアップを閉じる方法はありますか?角度2のタイスクリプトを使用してブートストラップモーダルを閉じます
expense.component.html
<div id="AddExpense" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Add Expense</h4>
</div>
<div class="modal-body">
<form id="form" (ngSubmit)="saveExpense();">
<div class="form-group">
<table class="table table-responsive" style="border:0">
<tr *ngFor="#column of columnInputs" style="height:20px;">
<td class="text-right" style="padding-top:10px;border:0">
<h4> {{column.name | case}}: </h4>
</td>
<td class="text-center" style="padding-top:10px;border:0">
<input *ngIf="column.name != 'status'" type="{{column.name == 'created_Date' ? 'date' : 'text'}}" name="{{columns.name}}" required [(ngModel)]="column.value" class="form-control" />
<select class="form-control" *ngIf="column.name == 'status'" [(ngModel)]="column.value" name="{{column.name}}" required>
<option value="status">--Select--</option>
<option value="1">Paid</option>
<option value="2">Unpaid</option>
</select>
</td>
</tr>
</table>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-lg"> Add Expense </button>
</div>
</form>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
を定義することも必要になります。これを見てください:https://github.com/pleerock/ng2-modal – j2L4e
子コンポーネントとして[ng2-bootstrap show/hideモーダル]の可能な複製(https://stackoverflow.com/questions/42735858/ng2- bootstrap-show-hide-modal-as-child-component) – Aravind