我正在尝试使用request
和cheerio
从帖子参数的链接获取每个视频的src。
要获得每个视频的src,我应该在每个循环中更改请求选项的url。但是当我尝试在下面获得类似src的代码时,更改请求的url比请求更快,因此在请求完成之前更改请求的url。我该怎么做才能实现我的目标?
这是代码
let opt = {
transform: function(body) {
return cheerio.load(body);
}
};
router.post('/api', function(req, res) {
let idArray = req.body.data;
for(var i=0; i<idArray.length; i++) {
opt.uri = baseURL + idArray[i];
request(opt)
.then(function($) {
console.log($('video').src);
}
记录(打印相同的内容)
https://example.mp4/asdfasdf
https://example.mp4/asdfasdf
修改
当我使用这段代码时,我从idArray [i]
中得到了未定义for(var i=0; i<idArray.length; i++) {
console.log("Before", baseURL + idArray[i])
rpap(baseURL + idArray[i])
.then(function($) {
console.log(idArray);
console.log("After", baseURL + idArray[i]);
}
日志
before http://example.com/adsfasdf
before http://example.com/famvvasd
after http://example.com/undefined
after http://example.com/undefined
答案 0 :(得分:0)
为什么不将新的uri与全局选项对象合并?我建议不要更改全局选项对象,因为可以进行多个请求,并且可以以意想不到的方式更改道具。
for (var i = 0; i < idArray.length; i++) {
let uri = baseURL + idArray[i];
request({
...opt,
uri // expands to uri: uri as per es6 style
})
.then(function($) {
console.log($('video').src);
})
}
此外,如果您始终使用转换选项,则可以将其设置为默认值。有了请求 - 承诺它看起来像这样(来自他们的文档):
var rpap = rp.defaults({ transform: autoParse });
rpap('http://google.com')
.then(function (autoParsedBody) {
// :)
});
rpap('http://echojs.com')
.then(function (autoParsedBody) {
// =)
});