0

早些时候我使用的是“launchpad.net/goamz/s3” ,但对于我的新项目,我使用的是“github.com/goamz/goamz/s3”。 并且桶的 put 方法发生了变化,现在它多了一个参数“选项”

region := aws.USEast2
connection := s3.New(AWSAuth, region)
bucket := connection.Bucket("XXXXX") // change this your bucket name
path := "mypath" // this is the target file and location in S3
//Save image to s3
err = bucket.Put(path,user_content,content_type, s3.ACL("public-read"), options)

以上是我的代码。你能帮助我在期权中的预期是什么以及我如何获得它的价值吗?

4

1 回答 1

2

选项在s3.go中定义:

type Options struct {
    SSE              bool
    Meta             map[string][]string
    ContentEncoding  string
    CacheControl     string
    RedirectLocation string
    ContentMD5       string
    // What else?
    // Content-Disposition string
    //// The following become headers so they are []strings rather than strings... I think
    // x-amz-storage-class []string
}

这些选项在官方 S3 api 文档中有详细记录。

在最简单的情况下,您可以不传递任何内容。例如: bucket.Put(path,user_content,content_type, s3.ACL("public-read"), s3.Options{})

于 2017-12-12T12:22:47.927 回答