teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

命名修正

2020/04/05 00:46

投稿

asai569
asai569

スコア24

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 getStamp = () => {
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