鉴于我已经在 localhost 上启动并运行了一个服务器(请参阅下面的示例),在 node 命令行while online,我得到以下信息:
> var x = request('http://localhost:8080/test.html',
... function(err) { if (err) console.log(err) })
undefined
>
我希望一直得到上述结果。
如果我切换到飞行模式,我会得到以下信息:
> var x = request('http://localhost:8080/test.html',
... function(err) { if (err) console.log(err) })
undefined
> { Error: getaddrinfo ENOENT localhost:8080
at Object.exports._errnoException (util.js:1022:11)
at errnoException (dns.js:33:15)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:76:26)
code: 'ENOENT',
errno: 'ENOENT',
syscall: 'getaddrinfo',
hostname: 'localhost',
host: 'localhost',
port: '8080' }
无论我是否处于飞行模式,再次尝试使用127.0.0.1
而不是localhost
工作。
问题
为什么本地主机不起作用?我可以看到这与 Windows 的 DNS 解析器有关。
上面客户端代码的设置
您需要先安装require:
C:\> npm install require
更广泛的背景
我已经把它归结为最简单的了。请参阅为什么 web-component-tester 在飞行模式下会超时?对于更广泛的背景。
示例服务器
问题不在于以下服务器,它只是一个简单的例子。我认为可能任何本地服务器都可以,而不仅仅是 NodeJS 的。问题出在上面详述的客户端代码中。
示例服务器的设置:
C:\> npm install connect serve-static
server.js:
var connect = require('connect')
var serveStatic = require('serve-static')
connect().use(serveStatic(__dirname)).listen(8080)
测试.html:
<html>Really not important, but necessary for completeness</html>
启动服务器:
C:\> node server.js