我是一个初学者,正在做一个使用 node.io
http://www.nycourts.gov/reporter/3dseries/2013/2013_06966.htm来抓取这个页面的内容的任务。
我想将 < P > 标签下的文本内容保存为变量中的字符串。
我的代码是这样的:
var nodeio = require('node.io'); var方法={输入:假,运行:函数(){this.getHtml(' http://www.nycourts.gov/reporter/3dseries/2013/2013_06966.htm ',函数(错误,$){
//Handle any request / parsing errors if (err) this.exit(err); var content = $('P'); this.emit(content); }); } }
exports.job = new nodeio.Job({timeout:10}, methods);
这显示错误:没有匹配“P”的元素。请帮忙..