Cheerio:需要传递$元素吗?

时间:2015-02-06 02:32:38

标签: javascript node.js function cheerio

我有几个在cheerio对象上运行的功能。对于几乎所有这些函数,我必须将$与元素一起传递给它。

示例:

function aUtilityFunc($, cheerioEl) { // <- $ in the params
    return cheerioEl.each(function (i, child) {
        // i do not want to do this:
        $(child).attr("something", $(child).attr("something") + "something");

        // i would rather do this and omit the $ in the params (like with global jquery doc):
        var $ = cheerioEl.$;
        $(child).attr("something", $(child).attr("something") + "something");
    });
}

是否有一个优雅的解决方案可以让我只将1个参数传递给我的函数? (我不是指将它们包装成对象文字:&gt;)。因为坦率地说,这种方式并不是那么好(除非我忽视了某些事情)。

1 个答案:

答案 0 :(得分:3)

好像你可以做这样的事情:

var $ = require('cheerio');

function aUtilityMethod(cEls) {
    cEls.each(function(i, a) {
        console.log("li contains:", $(a).html());
    });
}


// testing utility method
(function() {
    var fakeDocument = "<html><body><ol><li>one</li><li>two</li></ol></body></html>",
        myDoc = $(fakeDocument),
        myOl = $("ol", myDoc.html());

    aUtilityMethod(myOl.find("li"));
})();