2

我是 AWS 新手。我得到了这样的 AWS 响应。

<Items>
<Request>
  <IsValid>True</IsValid>
  <ItemSearchRequest>
    <Brand>Levi's</Brand>
    <Keywords>Men</Keywords>
    <ResponseGroup>Large</ResponseGroup>
    <SearchIndex>Apparel</SearchIndex>
  </ItemSearchRequest>
</Request>
*<TotalResults>282</TotalResults>
<TotalPages>29</TotalPages>*
 ***<Item>***
  <ASIN>B004A7YLN6</ASIN>
  <DetailPageURL>http://www.amazon.com/Levis-Extra-Capacity-Slimfold-Wallet/dp/B004A7YLN6%3FSubscriptionId%3DAKIAIETT7RP2RAFF4UUQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004A7YLN6</DetailPageURL>
  <SmallImage>
    <URL>http://ecx.images-amazon.com/images/I/51z7oqZYgoL._SL75_.jpg</URL>
    <Height Units="pixels">71</Height>
    <Width Units="pixels">75</Width>
  </SmallImage>
  <MediumImage>
    <URL>http://ecx.images-amazon.com/images/I/51z7oqZYgoL._SL160_.jpg</URL>
    <Height Units="pixels">152</Height>
    <Width Units="pixels">160</Width>
  </MediumImage>
   <ItemAttributes>
    <Binding>Apparel</Binding>
    <Brand>Levi's</Brand>
    <Department>mens</Department>
    <FabricType>100% Genuine Leather</FabricType>
    <Feature>Natural fold construction</Feature>
    <Feature>9 Credit card pockets</Feature>
    <Feature>Top entry mesh ID window pocket</Feature>
    </ItemAttributes>
    </Item>
     <Items>

现在,我每页有十个项目。我需要得到第二页的响应。我怎样才能得到第二页的响应。这里总页数为 29。如果您需要更多信息,请告诉我。我在 Asp.net 应用程序中使用 REST。

4

2 回答 2

0

看起来这与 AWS 关系不大,更多的是与您正在交谈的应用程序有关。例如,在带有 S3 的 AWS 中,您会得到一个isTruncated带有结果的标志,表明您可以请求更多结果(通过发送“start from”类型的参数)。您正在调用的应用程序需要为您提供一些执行此操作的方法。如果应用程序是您自己编写的应用程序,则需要实现此功能。

于 2012-09-11T05:06:18.980 回答
0

ItemPage参数使您能够返回指定页面的结果。可以返回的最大 ItemPage 编号为 10(如果使用 'All' as 则为 5 SearchIndex)。

于 2013-11-02T15:25:02.853 回答