質問編集履歴
2
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
Firebase上にはラーメンの情報が格納されていて、具体的には「味」、「麺の太さ」などがあります。
|
6
6
|
|
7
|
-
Webサイト上で、ラーメンの一覧を
|
7
|
+
Webサイト上で、ラーメンの一覧を指定条件で作成日の降順で表示したいと思っております。
|
8
8
|
|
9
9
|
|
10
10
|
|
@@ -90,9 +90,9 @@
|
|
90
90
|
|
91
91
|
let query = ref
|
92
92
|
|
93
|
-
.where('azi', 'array-contains' , this.azi)
|
93
|
+
.where('azi', 'array-contains' , this.azi == 0 ? [1, 2] : this.azi)
|
94
94
|
|
95
|
-
.where('hutosa', 'array-contains' , this.hutosa)
|
95
|
+
.where('hutosa', 'array-contains' , this.hutosa == 0 ? [1, 2, 3] : this.hutosa)
|
96
96
|
|
97
97
|
.get()
|
98
98
|
|
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
Firebase上にはラーメンの情報が格納されていて、具体的には「味」、「麺の太さ」などがあります。
|
6
6
|
|
7
|
-
Webサイト上で
|
7
|
+
Webサイト上で、ラーメンの一覧を、指定条件で作成日の降順で表示したいと思っております。
|
8
8
|
|
9
9
|
|
10
10
|
|