質問編集履歴
2
要点が伝わりやすいように表現の変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
angularの
|
1
|
+
angular4.0のrouter-outletを使用した際の親子間の値の受け渡し
|
test
CHANGED
@@ -4,11 +4,33 @@
|
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
-
親コンポーネントで
|
7
|
+
親コンポーネントでrouter-outletを使用して表示する際の子コンポーネントとの値の受け渡し方法がわかりません。
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
8
|
-
|
13
|
+
```ここに言語を入力
|
14
|
+
|
9
|
-
|
15
|
+
<router-outlet (onVoted)="onVoted($event)"></router-outlet><!--不可-->
|
16
|
+
|
10
|
-
|
17
|
+
<app-child1 (onVoted)="onVoted($event)"></app-child1><!--可-->
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```
|
22
|
+
|
11
|
-
selectorを使用した場合は、@Outputで親コンポーネントのメソッドを渡すことによって親との値のやり取りができますが、他のコンポーネントも共通する
|
23
|
+
selectorを使用した場合は、@Outputで親コンポーネントのメソッドを渡すことによって親との値のやり取りができますが、他のコンポーネントも共通するrouter-outletの場合どのようにしたら良いでしょうか?
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
12
34
|
|
13
35
|
|
14
36
|
|
1
リンクに変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
動作:https://toparent.herokuapp.com/
|
2
|
-
|
3
|
-
|
1
|
+
動作:[https://toparent.herokuapp.com/](https://toparent.herokuapp.com/)
|
2
|
+
|
3
|
+
ソース:[https://github.com/kuniatsu/routerQuestion](https://github.com/kuniatsu/routerQuestion)
|
4
4
|
|
5
5
|
|
6
6
|
|