我已经设置了 AWS S3 存储桶,并且可以使用 Vapor 3 和 Postman 上传文件。我也可以使用 Vapor 3 和 Postman 获取文件,但我很难在浏览器上获取并实际显示文件(png -images)(我使用的是叶子)。
那么如何在视图上显示图像文件呢?我是 HTML、AWS S3 和 Vapor 的新手。
我正在使用:
- 蒸气 3
- AWS S3
- 叶包
- S3 包
- VaporExt 封装
我按照本教程设置了所有内容(获取请求和存储桶策略除外):https ://fivedottwelve.com/blog/using-amazon-s3-with-vapor/
这是我的蒸汽代码:
/// GET reguest
func preparePresignedImageUrl(request: Request) throws -> String {
let baseUrl = awsConfig.url
let imagePath = awsConfig.imagePath
let fileName = "x.png"
guard var url = URL(string: baseUrl) else {
throw Abort(.internalServerError)
}
url.appendPathComponent(imagePath)
url.appendPathComponent(fileName)
print("url is \(url)")
let headers = ["x-amz-acl" : "public-read"]
let s3 = try request.makeS3Signer()
let result = try s3.presignedURL(for: .GET, url: url, expiration: Expiration.hour, headers: headers)
/// Retrieve file data from S3
guard let presignedUrl = result?.absoluteString else {
throw Abort(.internalServerError)
}
return presignedUrl
}
路线:
// GET request
group.get("aws", "image", use: preparePresignedImageUrl)
在邮递员中,当我向它发出 GET 请求时,presignedURL
它会给我一个状态码 200OK。
我的showImage.leaf
文件:
#set("content") {
<h1>#(title)</h1>
// Here some html to get the image path and display the image?
<img>
}
#embed("base")