我是JavaScript新手。我正在运行以下请求;
ec2.describeSpotPriceHistory(params, function(err, data) {
if (err) console.log(err, err.stack);
else console.log(data);
});
它将返回带有;
的json blob{ SpotPriceHistory:
[ { InstanceType: 'm3.medium',
ProductDescription: 'Linux/UNIX',
SpotPrice: '0.011300',
Timestamp: Tue May 03 2016 18:35:28 GMT+0100 (BST),
AvailabilityZone: 'eu-west-1c' }],
NextToken: 'cVmnNotARealTokenYcXgTockBZ4lc' }
哪都好。我知道我需要使用NextToken并重新循环以获得接下来的100个结果。我怎么能实现这个目标?
答案 0 :(得分:3)
您需要将令牌设置为NextToken
对象中的params
属性,然后再次调用describeSpotPriceHistory
。
这样的事情:
function getSpotPriceHistory(params) {
ec2.describeSpotPriceHistory(params, function(err, data) {
if (err) console.log(err, err.stack);
else {
console.log(data);
if (data.nextToken) {
params.nextToken = data.nextToken;
getSpotPriceHistory(params)
}
}
});
}
答案 1 :(得分:1)
我就是这样做的,没有转到请求中的下一个令牌,只是使用 async await 语法为 nextToken 添加了一个 while 循环。
async function fetchCurrentUsersInGroup(groupName) {
let users = [];
let response = {};
let params = {
GroupName: groupName,
UserPoolId: 'XXXX',
Limit: 60
};
response = await cognitoidentityserviceprovider.listUsersInGroup(params).promise();
users = [...users, ...response.Users];
while(response.NextToken) {
params.NextToken = response.NextToken;
response = await cognitoidentityserviceprovider.listUsersInGroup(params).promise();
users = [...users, ...response.Users];
}
return users;
}