0

削除のためにこのようなイベントを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>
4

3 に答える 3

0

but condition isで区切る必要;があります。最初の式が間違っていると、次の式が評価されません。ただし、ここでは両方とも関数であるため、期待どおりに実行されます。

(anyevent)="function1($event);function2($event);etc"

これは、&&次のようなシンボルでも機能します。

(anyevent)="function1($event)&&function2($event);etc"

試してみてください。これが役立つことを願っています。

于 2016-02-13T18:42:16.267 に答える