質問編集履歴

1

記入漏れで編集

2020/08/10 01:55

投稿

kotouharuto
kotouharuto

スコア38

test CHANGED
File without changes
test CHANGED
@@ -56,6 +56,64 @@
56
56
 
57
57
 
58
58
 
59
+ ### 該当のソースコード
60
+
61
+ ```html
62
+
63
+ <!DOCTYPE html>
64
+
65
+ <html lang="ja">
66
+
67
+ <head>
68
+
69
+ <meta charset="UTF-8">
70
+
71
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
72
+
73
+ <title>Document</title>
74
+
75
+ </head>
76
+
77
+ <body>
78
+
79
+ <script>
80
+
81
+ const USERS_API ="https://jsonplaceholder.typicode.com/users";
82
+
83
+ async function callApi() {
84
+
85
+ const res = await window.fetch(USERS_API);
86
+
87
+ const users = await res.json();
88
+
89
+ console.log('名前:'.users['name']);
90
+
91
+ }
92
+
93
+
94
+
95
+ callApi();
96
+
97
+ </script>
98
+
99
+ </body>
100
+
101
+ </html>
102
+
103
+ ```
104
+
105
+
106
+
107
+ ### 試した事
108
+
109
+ console.log(users['name'])などとしましたが、「'name'プロパティが見つかりません」と出てきました。
110
+
111
+
112
+
113
+ ---
114
+
115
+
116
+
59
117
  数時間程度検索を欠けたのですが、自分が望むような記事に出会えず、質問させていただきました。
60
118
 
61
119
  また自分は普段PHPを使用しているのjavascriptにも疎く、知識がないので質問させていただきました。