質問編集履歴

2

不要なコマンドラインがあったので削除

2020/08/31 07:42

投稿

hanju8810tt
hanju8810tt

スコア16

test CHANGED
File without changes
test CHANGED
@@ -222,8 +222,6 @@
222
222
 
223
223
 
224
224
 
225
- document.getElementById("status").innerHTML =
226
-
227
225
  function s3cpfile(funcbn,funcpre2){
228
226
 
229
227
  funcbn=BUCKET_NAME;

1

ボタンを押下すると、aws s3 cpコマンドが実行されるようにしたいのです。

2020/08/31 07:42

投稿

hanju8810tt
hanju8810tt

スコア16

test CHANGED
File without changes
test CHANGED
@@ -26,9 +26,37 @@
26
26
 
27
27
 
28
28
 
29
-
29
+ ■試したこと
30
+
30
-
31
+ コマンドプロントからaws cliを使って任意のファイルをダウンロードするコマンドを作成しました。
32
+
33
+ aws s3 cp s3://<バケット名>/<ファイル名> <ダウンロード先>
34
+
35
+
36
+
37
+ 上記コマンドを実行する関数を作成しました。
38
+
39
+ function s3cpfile(funcbn,funcpre2){
40
+
41
+ funcbn=BUCKET_NAME;
42
+
43
+ funcpre2=prefix2; //←File Name(TextBox)の値です。
44
+
45
+ return "aws s3 cp s3://" + funcbn + "/" + funcpre2 +" " + "." ;
46
+
47
+ }
48
+
49
+
50
+
51
+ これを実行したいのですが、(修正版)test.htmlでは実現できません。コマンドラインはあっています。
52
+
53
+
54
+
55
+
56
+
57
+
58
+
31
- test.html
59
+ (修正版)test.html
32
60
 
33
61
  ```
34
62
 
@@ -196,9 +224,17 @@
196
224
 
197
225
  document.getElementById("status").innerHTML =
198
226
 
227
+ function s3cpfile(funcbn,funcpre2){
228
+
199
- "Success!"
229
+ funcbn=BUCKET_NAME;
200
-
230
+
201
- //↑ここでファイルをダウンロードしたい
231
+ funcpre2=prefix2;
232
+
233
+ return "aws s3 cp s3://" + funcbn + "/" + funcpre2 +" " + "." ;
234
+
235
+             }
236
+
237
+             s3cpfile();
202
238
 
203
239
 
204
240