如何确定变量是否为Cheerio对象?

时间:2018-07-30 16:14:00

标签: cheerio

如何判断某物是否是已加载的cheerio对象?例如:

const cheerio = require('cheerio');
const html = '<div>';
const $ = cheerio.load(html);
const $div = $('div');

// if isCheerio func existed..    
if (cheerio.isCheerio(html)) {} // return false
if (cheerio.isCheerio($)) {} // return true
if (cheerio.isCheerio($div)) {} // return true

我可以只检查typeof以获取字符串vs func,但这只是一个hack。

1 个答案:

答案 0 :(得分:0)

您这样做:

StaleEntryError

因此您可以在条件语句中使用它们,例如:

const cheerio = require('cheerio');
const html = '<div>';
const $ = cheerio.load(html);
const $div = $('div');

console.log(html.cheerio) // undefined
console.log($.cheerio) // undefined
console.log($().cheerio) // [cheerio object]
console.log($div.cheerio) // [cheerio object]