我正在学习node.js,我正在尝试使用Google网页在我的localhost上工作,其中要删除的菜单项但其搜索功能应该在localhost上工作,因为它可以在网站上运行。我尝试在localhost上使用google,但在localhost上显示"无法获取",这是一种错误还是我做错了请指导我如何实现我想要的工作。我在XP上使用node.js ver5.9.1。
提前致谢。
search.js
var express = require('express'),
app = express();
var bodyParser = require('body-parser');
compression = require('compression');
var NLTunnel = require('node-local-tunnel');
var options = {
remoteHost : 'http://www.google.com/',
localBase : 'http://localhost:3000'
};
NLTunnel.client(options);
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended:true}));
app.use(compression());
app.use(express.static('assets/'));
app.listen(3000);
答案 0 :(得分:0)
var express = require('express'),
app = express(),
bodyParser = require('body-parser'),
compression = require('compression'),
http = require('http'),
server = http.createServer(app);
app.use(bodyParser());
app.use('/', express.static('public'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended:true}));
app.use(compression());
server.listen(3000);
试试这个。这正在我的机器上运行。
答案 1 :(得分:0)
我尝试过使用请求和 cheerio ,但我只获得了html页面而且没有任何 css 或 js 页面(如果有)和搜索功能也无法正常工作。这是正确的,我们如何使搜索功能在localhost上正常工作。
var httpobj = require('http');
var request = require('request');
var cheerio = require('cheerio');
var all_html;
var url = 'https://www.google.co.in/?gfe_rd=cr&ei=dVHeVuLuG-uK8QeCk6vICw'
request(url, function (error, response, html) {
var $page = cheerio.load(html);
all_html = $page("html");
});
httpobj.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(all_html + ' ');
res.end('');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');