作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码从 YouTube 视频的评论部分检索评论。问题是它会检索 20 条评论,如果有更多评论,它会检索下一个标记。我对使用 promise 的经验不是很丰富,所以我想知道如何获取该部分中的所有评论,直到不再有 token 为止?
此代码是名为 youtube-comment-api 的 npm 包中的示例代码
我想我的问题很容易解决,但现在我不知道。
<小时/>示例:
const fetchCommentPage = require('youtube-comment-api')
const videoId = 'DLzxrzFCyOs'
fetchCommentPage(videoId)
.then(commentPage => {
console.log(commentPage.comments)
return fetchCommentPage(videoId, commentPage.nextPageToken)
})
.then(commentPage => {
console.log(commentPage.comments)
})
最佳答案
您应该使用递归来获取所有页面的评论。像这样的东西应该有效:
// returns a list with all comments
function fetchAllComments(videoId, nextPageToken) {
// nextPageToken can be undefined for the first iteration
return fetchCommentPage(videoId, nextPageToken)
.then(commentPage => {
if (!commentPage.nextPageToken) {
return commentPage.comments;
}
return fetchAllComments(videoId, commentPage.nextPageToken).then(comments => {
return commentPage.comments.concat(comments);
});
});
}
关于javascript - 如何使用未知数量代币的 promise ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44295058/
我是一名优秀的程序员,十分优秀!