我正在尝试从S3下载特定的数据块。以下是代码段。
<DIV class="panel-group" ng-repeat="ent in EntitlementList | unique:'attributename'">
<DIV class="panel panel-default">
<div style="height: 40px; margin-left: 1%; margin-right: 2%; margin-top: 1%">
<a data-toggle="collapse" ng-click="getEntitlement(ent.attributename)"
data-target="#collapse{{$index}}"> {{ent.attributename}}</a>
</div>
<DIV id="collapse{{$index}}" class="panel-collapse collapse">
<div ng-repeat="ep in EndpointList"
<div style="height: 20px; margin-left: 2%; margin-top: 1%;">{{ep.endpointname}}</div>
</div>
</DIV>
</DIV>
</DIV>
但这会不断地逐个下载,直到整个对象被检索出来;不下载仅指定的部分。我在这里缺少任何配置吗?
答案 0 :(得分:1)
看起来像Go SDK的问题;尝试s3.GetObject而不是下载器。
答案 1 :(得分:0)
以前的AWS-Go-SDK存在这个问题。它现在已修复https://github.com/aws/aws-sdk-go/pull/1311