回答編集履歴
1
sample
test
CHANGED
@@ -7,3 +7,35 @@
|
|
7
7
|
何らかの変換テーブルを用意するならtxtはajaxで読み込み
|
8
8
|
|
9
9
|
合致するデータを置き換える処理をかけばいいでしょう
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
# sample
|
14
|
+
|
15
|
+
- test.txt
|
16
|
+
|
17
|
+
```text
|
18
|
+
|
19
|
+
"1","2","3"
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
- test.htm
|
26
|
+
|
27
|
+
```javascript
|
28
|
+
|
29
|
+
<script>
|
30
|
+
|
31
|
+
const list={1:"話す",2:"歩く",3:"寝る"};
|
32
|
+
|
33
|
+
fetch('y.php').then(res=>res.text()).then(res=>JSON.parse("["+res+"]")).then(res=>{
|
34
|
+
|
35
|
+
console.log(...res.map(res=>list[res]));
|
36
|
+
|
37
|
+
});
|
38
|
+
|
39
|
+
</script>
|
40
|
+
|
41
|
+
```
|