質問編集履歴

2

書式の修正

2021/02/18 08:41

投稿

sanset
sanset

スコア186

test CHANGED
File without changes
test CHANGED
@@ -44,25 +44,33 @@
44
44
 
45
45
 
46
46
 
47
- let base64 = '';
47
+ function getBase64(url){
48
48
 
49
-
49
+ let base64 = '';
50
50
 
51
- getBase64ImageFromUrl('/image.png')
51
+
52
52
 
53
- .then(result => {
53
+ getBase64ImageFromUrl(url)
54
54
 
55
- base64 = result;
55
+ .then(result => {
56
56
 
57
- })
57
+ base64 = result; //ここは通っている
58
58
 
59
+ })
60
+
59
- .catch(err => console.error(err));
61
+ .catch(err => console.error(err));
62
+
63
+
64
+
65
+ return base64;
66
+
67
+ }
60
68
 
61
69
 
62
70
 
63
71
  //データが入った状態で取得したい
64
72
 
65
- console.log(base64);
73
+ console.log(getBase64('/image.png'));
66
74
 
67
75
 
68
76
 
@@ -74,7 +82,7 @@
74
82
 
75
83
 
76
84
 
77
- こちらなのですが、取得自体は出来ていすが、console.logに入るデータは空白です。
85
+ 変換自体は出来ているのですが、非同期処理なためconsole.logに入るデータは空白です。
78
86
 
79
87
 
80
88
 

1

入力漏れ

2021/02/18 08:40

投稿

sanset
sanset

スコア186

test CHANGED
File without changes
test CHANGED
@@ -74,7 +74,7 @@
74
74
 
75
75
 
76
76
 
77
- こちらなのですが、console.logに入るデータは空白です。
77
+ こちらなのですが、取得自体は出来ていますが、console.logに入るデータは空白です。
78
78
 
79
79
 
80
80