質問編集履歴
1
命名修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -43,12 +43,15 @@
|
|
43
43
|
const http = 'https://*******.com/user.php';
|
44
44
|
|
45
45
|
|
46
|
-
const
|
46
|
+
const getId = () => {
|
47
47
|
Axios.get(http)
|
48
48
|
.then(res => console.log(`data: ${[res.data]}`))
|
49
49
|
.catch(error => console.log(error));
|
50
50
|
};
|
51
51
|
|
52
|
+
|
53
|
+
getId()
|
54
|
+
|
52
55
|
```
|
53
56
|
|
54
57
|
|