質問編集履歴

1

詳細を追加

2021/06/08 06:55

投稿

gasuketu
gasuketu

スコア10

test CHANGED
File without changes
test CHANGED
@@ -65,3 +65,25 @@
65
65
  <API>
66
66
 
67
67
  https://avgle.github.io/doc/
68
+
69
+ ```js
70
+
71
+ const res = await axios.get("https://static.tvmaze.com/uploads/images/original_untouched/299/748854.jpg");
72
+
73
+ const data = res.data;
74
+
75
+ console.log(data);
76
+
77
+ return {
78
+
79
+ props: { data }
80
+
81
+ }
82
+
83
+
84
+
85
+ //-------------------下のような文字列が長々と続いたデータが返ってくる
86
+
87
+ ��r=�Es�ڦ}Ne�2,�v���|�L�H#p;��q�����u�'P~�?ڜ|�����k�rc
88
+
89
+ ```