AWS S3 JAVASCRIPT SDK 上傳


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <!-- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.410.0.min.js"></script> <script src="https://sdk.amazonaws.com/js/aws-sdk-2.806.0.min.js"></script> -->
    <script src="https://sdk.amazonaws.com/js/aws-sdk-2.235.1.js"></script>
</head>

<body>
   <input id="file-chooser" type="file"/>
    <button id="upload-button">Upload</button>
    <p id="results"><p></p>
    <script type="text/javascript">
    /// <reference types="aws-sdk" />
    var credentials = {
        accessKeyId: 'xxx',
        secretAccessKey: 'xxxxxxxxxxxxxxx'
    }; //秘鑰形式的登錄上傳
    AWS.config.update(credentials);
    AWS.config.region = 'us-east-1'; //設置區域
    AWS.config.endpoint = 'http://114.xx.xx.xx:9000/ysx';
    AWS.config.sslEnabled = false;
    AWS.config.s3BucketEndpoint = true;
    
    // create bucket instance
    var bucket = new AWS.S3({ params: { Bucket: 'xxx' } }); //選擇桶
    var fileChooser = document.getElementById('file-chooser');
    var button = document.getElementById('upload-button');
    var results = document.getElementById('results');
    button.addEventListener('click', function() {
        var file = fileChooser.files[0];
        if (file) {
            results.innerHTML = '';
            var params = { Key: file.name, ContentType: file.type, Body: file, 'Access-Control-Allow-Credentials': '*', 'ACL': 'public-read' }; //key可以設置為桶的相抵路徑,Body為文件, ACL最好要設置
            console.log(params)
            bucket.upload(params, function(err, data) {
                console.log(err); //打印出錯誤
                results.innerHTML = err ? 'ERROR!' : 'UPLOADED.';
                console.log(data);
            });
        } else {
            results.innerHTML = 'Nothing to upload.';
        }
    }, false);
    </script>
</body>

</html>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM