I am using cheerio to parse html file on server side with node 6.10.2. I need to get outerHtml of each div inside document body and my code is:
/* const data is valid html document (type of string)*/
const $ = cheerio.load(data);
let pages = $('body > div').toArray();
console.log(pages[0]); // Elements parsed correctly
let htmlPages = pages.map(page => $(page).html());
console.log(htmlPages[0]); // Here I have innerHtml, not outer...
Problem: I'm getting string with innerHtml. Can anybody help pls. ?
via Kate Belova
No comments:
Post a Comment