質問編集履歴
5
脱字
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
firebase.storage
|
1
|
+
["firebase"].storage is not a function. **。そんなバカなありえない(Nuxt.js)
|
test
CHANGED
File without changes
|
4
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -146,6 +146,8 @@
|
|
146
146
|
|
147
147
|
|
148
148
|
|
149
|
+
先程申したエラーが出ます。
|
150
|
+
|
149
151
|
|
150
152
|
|
151
153
|
|
3
内容修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
firebase.storage()
|
1
|
+
firebase.storage() が無い?!。そんなバカな(Nuxt.js)
|
test
CHANGED
@@ -1,3 +1,29 @@
|
|
1
|
+
**_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage is
|
2
|
+
|
3
|
+
not a function. **
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
**(In'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage()',**
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
**'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage' is undefined)**
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
ドキュメント通りのコードを入力したのですが、こうしたエラーがでます。
|
20
|
+
|
21
|
+
[firebase storage web](https://firebase.google.com/docs/storage/web/upload-files?hl=ja)
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
1
27
|
Nuxt.jsで、画像アップロード機能を作成しています。
|
2
28
|
|
3
29
|
|
@@ -122,28 +148,6 @@
|
|
122
148
|
|
123
149
|
|
124
150
|
|
125
|
-
**_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage is
|
126
|
-
|
127
|
-
not a function. **
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
**(In'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage()',**
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
**'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage' is undefined)**
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
ドキュメント通りのコードを入力したのですが、エラーがでます。
|
144
|
-
|
145
|
-
[firebase storage web](https://firebase.google.com/docs/storage/web/upload-files?hl=ja)
|
146
|
-
|
147
151
|
|
148
152
|
|
149
153
|
現在も原因を探しています。
|
2
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -90,11 +90,17 @@
|
|
90
90
|
|
91
91
|
methods:{
|
92
92
|
|
93
|
-
const storage = firebase.storage();
|
93
|
+
const storage = firebase.storage();//これがダメみたい。ドキュメント通りなのに
|
94
94
|
|
95
|
-
storage
|
95
|
+
storage
|
96
96
|
|
97
|
+
.ref()
|
98
|
+
|
99
|
+
.child('image'+this.imageName)
|
100
|
+
|
101
|
+
.put(this.image)
|
102
|
+
|
97
|
-
.
|
103
|
+
.then(function(snapshot){
|
98
104
|
|
99
105
|
console.log('success')
|
100
106
|
|
@@ -136,6 +142,8 @@
|
|
136
142
|
|
137
143
|
ドキュメント通りのコードを入力したのですが、エラーがでます。
|
138
144
|
|
145
|
+
[firebase storage web](https://firebase.google.com/docs/storage/web/upload-files?hl=ja)
|
146
|
+
|
139
147
|
|
140
148
|
|
141
149
|
現在も原因を探しています。
|
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -114,17 +114,19 @@
|
|
114
114
|
|
115
115
|
|
116
116
|
|
117
|
-
_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage is
|
118
117
|
|
118
|
+
|
119
|
+
**_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage is
|
120
|
+
|
119
|
-
not a function.
|
121
|
+
not a function. **
|
120
122
|
|
121
123
|
|
122
124
|
|
123
|
-
(In'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage()',
|
125
|
+
**(In'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage()',**
|
124
126
|
|
125
127
|
|
126
128
|
|
127
|
-
'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage' is undefined)
|
129
|
+
**'_plugins_firebase__WEBPACK_IMPORTED_MODULE_12__["firebase"].storage' is undefined)**
|
128
130
|
|
129
131
|
|
130
132
|
|