回答編集履歴

1

遷移についての説明を更新しました

2016/03/17 22:22

投稿

iktakahiro
iktakahiro

スコア142

test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  2. `http://hoge.com/index.html` => **実際ブラウザが読み込んでいるのはこのファイル**
26
26
 
27
- 3. `http://hoge.com/detail/1` => History API を利用して URL が書き換わっている
27
+ 3. `http://hoge.com/detail/1` => react-router が対応するコンポーネントを読み込んで表示。このとき History API により URL が書き換わっている
28
28
 
29
29
 
30
30
 
@@ -43,6 +43,10 @@
43
43
  1. `http://hoge.com/detail/1`
44
44
 
45
45
  2. `http://hoge.com/index.html` => **URLが rewrite された結果ブラウザが読み込んでいるのはこのファイルになる**
46
+
47
+ 3. `http://hoge.com/detail/1` => **react-router が対応するコンポーネントを読み込んで表示**
48
+
49
+
46
50
 
47
51
 
48
52