質問編集履歴
1
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
下のコードに書いてあるように、
|
13
|
+
下のコードに書いてあるように、thenの内と外で、this.myListが取得できるかどうかになぜ違いが出てくるのでしょうか。
|
14
14
|
|
15
15
|
|
16
16
|
|
@@ -42,11 +42,11 @@
|
|
42
42
|
|
43
43
|
this.myList = doc.data().myList
|
44
44
|
|
45
|
-
console.log("
|
45
|
+
console.log("thenの中: " + this.myList) // thenの中ではthis.myListで取り出せる
|
46
46
|
|
47
47
|
})
|
48
48
|
|
49
|
-
console.log("
|
49
|
+
console.log("thenの外: " + this.myList) // thenの外ではthis.myListで取り出せない
|
50
50
|
|
51
51
|
},
|
52
52
|
|