使用前需要先安装cheerio。
因为需要写一个单页模板助手,就用到了cheerio,使用cheerio解析html数据,获取script标签,然后获取src就可以了。
var $ = cheerio.load(that.data);
that.jslist = []
$('script').map(function (i, el) {
if (el.attribs.src) {
that.jslist.push(el.attribs.src)
}
});