質問編集履歴

1

誤字の修正

2021/04/02 06:08

投稿

gymusel
gymusel

スコア4

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
 
12
12
 
13
- 下のコードに書いてあるように、onSnapshot内と外で、this.myListが取得できるかどうかになぜ違いが出てくるのでしょうか。
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("onSnapshot内: " + this.myList) // onSnapshot内ではthis.myListで取り出せる
45
+ console.log("thenの中: " + this.myList) // thenの中ではthis.myListで取り出せる
46
46
 
47
47
  })
48
48
 
49
- console.log("onSnapshot外: " + this.myList) // onSnapshot外ではthis.myListで取り出せない
49
+ console.log("then外: " + this.myList) // then外ではthis.myListで取り出せない
50
50
 
51
51
  },
52
52