削除のためにこのようなイベントを1つ送信しています
<child-component *ngFor = "#todo of array" [taskobject] = "todo"
(childevent) = "deleteparent($event)">Loading...</child-component>
childevent と一緒に別のイベントを送信するにはどうすればよいですか? コンマ区切りですか? このような?
<child-component *ngFor = "#todo of array" [taskobject] = "todo"
(childevent) = "deleteparent($event)",
(updateevent)> = "(updateparent)"Loading...</child-component>
また、編集/更新リクエストの場合、サーバーにどのhttpをリクエストする必要がありますか?サーバー側でもhttp.putですか?それはserver.put('url')ですか?
アップデート:
<child-component *ngFor = "#todo of array"
[taskobject] = "todo" (childevent) = "deleteparent($event)"
; (updatevent) = "updateparent($event)">Loading...</child-component>