无法从 div 获取文本
Can't get text from a div
我想从某些维基百科页面获取 div mw-content-text
的内容(这只是学习示例 node.js)我做了这个:
var fetch = require('node-fetch');
var cheerio = require('cheerio');
var fs = require('fs');
var vv = [
'https://en.wikipedia.org/wiki/Ben_Silbermann',
'https://en.wikipedia.org/wiki/List_of_Internet_entrepreneurs'
];
var bo=[],
$;
vv.forEach((t)=>{
fetch(t)
.then(res => res.text())
.then((body) => {
$ = cheerio.load(body);
var finded = $('#mw-content-text').text();
bo.push(finded);
});
});
console.log(bo);
如果我输出正文,它会填充一个包含整个 html 页面的字符串(所以,这一步没问题),
如果我输出 $
它包含一个集合(但我不确定它是否被填充,我使用 node.js 命令提示符但看起来它不是正确的工具,对此有什么建议吗?)
无论如何,变量 bo
returns 我是一个空数组
这里的问题是我们在 fetch 调用完成之前记录 bo。我建议使用 async/await 语法来确保我们等待所有到达 return,然后我们可以记录结果。
您可以进行更多处理,例如删除空行、空格等,但这应该不会太难。
var fetch = require('node-fetch');
var cheerio = require('cheerio');
var vv = [
'https://en.wikipedia.org/wiki/Ben_Silbermann',
'https://en.wikipedia.org/wiki/List_of_Internet_entrepreneurs'
];
async function getDivcontent() {
const promises = vv.map(async t => {
const body = await fetch(t).then(res => res.text());
const $ = cheerio.load(body);
return $('#mw-content-text').text();
});
return await Promise.all(promises);
}
async function test() {
let result = await getDivcontent();
console.log("Result:" + result);
}
test();
我想从某些维基百科页面获取 div mw-content-text
的内容(这只是学习示例 node.js)我做了这个:
var fetch = require('node-fetch');
var cheerio = require('cheerio');
var fs = require('fs');
var vv = [
'https://en.wikipedia.org/wiki/Ben_Silbermann',
'https://en.wikipedia.org/wiki/List_of_Internet_entrepreneurs'
];
var bo=[],
$;
vv.forEach((t)=>{
fetch(t)
.then(res => res.text())
.then((body) => {
$ = cheerio.load(body);
var finded = $('#mw-content-text').text();
bo.push(finded);
});
});
console.log(bo);
如果我输出正文,它会填充一个包含整个 html 页面的字符串(所以,这一步没问题),
如果我输出 $
它包含一个集合(但我不确定它是否被填充,我使用 node.js 命令提示符但看起来它不是正确的工具,对此有什么建议吗?)
无论如何,变量 bo
returns 我是一个空数组
这里的问题是我们在 fetch 调用完成之前记录 bo。我建议使用 async/await 语法来确保我们等待所有到达 return,然后我们可以记录结果。
您可以进行更多处理,例如删除空行、空格等,但这应该不会太难。
var fetch = require('node-fetch');
var cheerio = require('cheerio');
var vv = [
'https://en.wikipedia.org/wiki/Ben_Silbermann',
'https://en.wikipedia.org/wiki/List_of_Internet_entrepreneurs'
];
async function getDivcontent() {
const promises = vv.map(async t => {
const body = await fetch(t).then(res => res.text());
const $ = cheerio.load(body);
return $('#mw-content-text').text();
});
return await Promise.all(promises);
}
async function test() {
let result = await getDivcontent();
console.log("Result:" + result);
}
test();