質問編集履歴
2
解析として試したことを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -120,9 +120,17 @@
|
|
120
120
|
|
121
121
|
* index.htmlから、Pluginやライブラリを読み込む components/loader.js を外すと、Firestoreのデータが取得できる。
|
122
122
|
|
123
|
-
* index.hmtl
|
123
|
+
* index.htmlの components/loader.js を読み込む位置を変える → 取得出来ない
|
124
|
+
|
124
|
-
|
125
|
+
* index.htmlの components/loader.js を cordova.js へ変える → 取得出来ない
|
126
|
+
|
125
|
-
|
127
|
+
* index.htmlの Content-Security-Policy へ connect-src * blob: を追加 → 取得出来ない
|
128
|
+
|
129
|
+
```
|
130
|
+
|
131
|
+
<meta http-equiv=Content-Security-Policy content="default-src * data: gap: https://ssl.gstatic.com; connect-src * blob:; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'">
|
132
|
+
|
133
|
+
```
|
126
134
|
|
127
135
|
|
128
136
|
|
1
index.htmlを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -120,6 +120,8 @@
|
|
120
120
|
|
121
121
|
* index.htmlから、Pluginやライブラリを読み込む components/loader.js を外すと、Firestoreのデータが取得できる。
|
122
122
|
|
123
|
+
* index.hmtlの
|
124
|
+
|
123
125
|
|
124
126
|
|
125
127
|
|
@@ -193,3 +195,55 @@
|
|
193
195
|
}
|
194
196
|
|
195
197
|
```
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
## 追記(2018/10/19)
|
202
|
+
|
203
|
+
index.htmlを追記します。
|
204
|
+
|
205
|
+
```html
|
206
|
+
|
207
|
+
<!DOCTYPE html> <html> <head> <meta charset=utf-8> <meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> <meta http-equiv=Content-Security-Policy content="default-src * data: gap: https://ssl.gstatic.com; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'"> <meta name=format-detection content="telephone=no">
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
<!-- 元の位置
|
212
|
+
|
213
|
+
<script type=text/javascript src=components/loader.js></script>
|
214
|
+
|
215
|
+
-->
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
<link rel=stylesheet type=text/css href=components/loader.css>
|
220
|
+
|
221
|
+
<link href=app.css rel=stylesheet>
|
222
|
+
|
223
|
+
</head>
|
224
|
+
|
225
|
+
<body>
|
226
|
+
|
227
|
+
<div id=app></div>
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
<script type=text/javascript src=runtime~app.bundle.js></script>
|
232
|
+
|
233
|
+
<script type=text/javascript src=vendors~app.bundle.js></script>
|
234
|
+
|
235
|
+
<script type=text/javascript src=app.bundle.js></script>
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
<!-- 移動後 -->
|
240
|
+
|
241
|
+
<script type=text/javascript src=components/loader.js></script>
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
</body>
|
246
|
+
|
247
|
+
</html>
|
248
|
+
|
249
|
+
```
|