質問編集履歴
2
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,13 +8,21 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
実現したいこととして、posts(c)のdocumentsを所得する際に、followingsRefのuidを代入し,現在フォローしているユーザーのpostを所得したいと考えています。
|
11
|
+
実現したいこととして、posts(c)のdocumentsを所得する際に、followingsRefのuidをdocument名に代入し,現在フォローしているユーザーのpostを所得したいと考えています。
|
12
12
|
|
13
13
|
```Swift
|
14
14
|
|
15
15
|
let followingsRef: CollectionReference = db.collection("following").document(uid!).collection("userFollowing")
|
16
16
|
|
17
17
|
|
18
|
+
|
19
|
+
```
|
20
|
+
|
21
|
+
以前以下のDocumentReferenceでdb.collection("post").document(followingsRef)でdocumentIDを所得すると全く違うdocumentIDが所得されました。
|
22
|
+
|
23
|
+
```Swift
|
24
|
+
|
25
|
+
let followingsRef = db.collection("following").document(uid!).collection("userFollowing").document().documentID
|
18
26
|
|
19
27
|
```
|
20
28
|
|
1
追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|