Как использовать селекторы JQuery в Node.js - PullRequest
8 голосов
/ 29 ноября 2010

Я пытаюсь извлечь информацию электронной почты из файлов HTML на моем жестком диске.

Если я загружаю файл в Firefox и запускаю закладку jQuerify, я могу успешно использовать следующий селектор / функцию

window.jQuery("a.iEmail").each(function(el) {
  console.log(window.jQuery(this).attr('href'))
});

Но использование этого в Node.js не работает

var document = require("jsdom").jsdom(),
  script = document.createElement("script"),
  fs = require('fs');

fs.readFile('file_1.html', 'utf-8', function(err, data){
  if (err) {
    throw err;
  }

  // This output the document
  //console.log(data)

  var window = document.createWindow(data);

  script.src = 'http://code.jquery.com/jquery-1.4.2.js';
  script.onload = function() {
    console.log(window.jQuery.fn.jquery);
    // outputs: 1.4.2
    //console.log(window.jQuery);

    /*
     * This line works if i load the local file in firefox and execute
     * the jQuerify bookmarlet
     */
    window.jQuery("a.iEmail").each(function(el) {
      console.log(window.jQuery(this).attr('href'))
    });
  };
  document.head.appendChild(script);
});

Ответы [ 4 ]

11 голосов
/ 29 ноября 2010

Теперь я знаю, в чем проблема.

HTML-данные должны быть переданы в вызове создания документа, поэтому код выглядит следующим образом:

var jsdom = require("jsdom"),
    fs = require('fs');

fs.readFile('file_1.html', 'utf-8', function(err, data){
  if (err) {
    throw err;
  }

  // This output the document
  //console.log(data)

  // HTML data should be in document creation call
  var document = jsdom.jsdom(data); // data is the html content
  var script = document.createElement("script");

  // HTML data SHOULD NOT be in window creation call
  var window = document.createWindow();

  script.src = 'http://code.jquery.com/jquery-1.4.2.js';
  script.onload = function() {
    console.log(window.jQuery.fn.jquery);
    // outputs: 1.4.2
    //console.log(window.jQuery);

    /*
     * This line works if i load the local file in firefox and execute
     * the jQuerify bookmarlet
     */
    window.jQuery("a.iEmail").each(function(el) {
      console.log(window.jQuery(this).attr('href'))
    });
  };
  document.head.appendChild(script);
});
1 голос
/ 11 ноября 2015

Использование Cheerio

Cheerio - это серверная реализация ядра jQuery, которая идеально подходит для использования селекторов.

Вы можете легко использовать каждую функцию :

$('a.iEmail').each(function (i, elem) {
  console.log($(this).attr('href'));
});

Полный пример:

var fs = require('fs');
var cheerio = require('cheerio');

fs.readFile('file_1.html', 'utf-8', function (err, data) {
  if (err) {
    throw err;
  }

  var $ = cheerio.load(data);

  $('a.iEmail').each(function (i, elem) {
    console.log($(this).attr('href'));
  });
});
1 голос
/ 29 ноября 2010

Трудно использовать jquery с node.js, но это возможно. Вот реализация с jsdom:

var jsdom = require('jsdom').jsdom,
    sys = require('sys'),
    window = jsdom().createWindow();

jsdom.jQueryify(window, '/path/to/jquery.js', function (window, jquery) {
  window.jQuery('body').append("<div class='testing'>Hello World</div>");
  sys.puts(window.jQuery(".testing").text()); // outputs Hello World
});

Подробнее см .:

http://blog.nodejitsu.com/jsdom-jquery-in-5-lines-on-nodejs

или

Могу ли я использовать jQuery с Node.js?

0 голосов
/ 21 мая 2014

jsdom поддерживает jQuery "официальным" способом.

jsdom.env(string, [scripts], [config], callback);

Простой код:

var jsdom = require("jsdom"),
fs = require('fs');

fs.readFile('file_1.html', 'utf-8', function (err, data) {
    if (err) {
        throw err;
    }
    jsdom.env(data, ["http://code.jquery.com/jquery.js"], function (errors, window) {
        var $ = window.$;
        $("a.iEmail").each(function() {
            console.log(this.href)
        });
    })

}

https://github.com/tmpvar/jsdom#easymode

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...