回答編集履歴
2
typo
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
});
|
7
7
|
</script>
|
8
8
|
```
|
9
|
-
変換表が別にあるなら
|
9
|
+
変換表が別にあるならこんな感じでよいかも
|
10
10
|
```javascript
|
11
11
|
const dict = {
|
12
12
|
"01": "りんご",
|
1
chousei
test
CHANGED
@@ -1,8 +1,20 @@
|
|
1
1
|
01がテスト1になるロジックがわかりませんが、こんな感じ
|
2
2
|
```html
|
3
3
|
<script>
|
4
|
-
fetch('
|
4
|
+
fetch('test.json').then(res=>res.json()).then(data=>{
|
5
5
|
data.Test.reduce((x,y)=>(x.appendChild(Object.assign(document.createElement('p'),{textContent:`テスト${parseInt(y).toString()}`})),x),document.body);
|
6
6
|
});
|
7
7
|
</script>
|
8
8
|
```
|
9
|
+
変換表が別にあるなら今感じでよいかも
|
10
|
+
```javascript
|
11
|
+
const dict = {
|
12
|
+
"01": "りんご",
|
13
|
+
"02": "ゴリラ",
|
14
|
+
"03": "ラッパ",
|
15
|
+
"04": "パイナップル",
|
16
|
+
};
|
17
|
+
fetch('test.json').then(res=>res.json()).then(data=>{
|
18
|
+
data.Test.forEach(x=>document.body.appendChild(Object.assign(document.createElement('p'),{textContent:dict[x]})));
|
19
|
+
});
|
20
|
+
```
|