我server.coffee
从这个页面运行:https ://github.com/xenph/foaas
从命令行,您可以执行以下操作:
curl http://localhost:5000/off/Name1/Name2
!@#$ off, Name1. - Name2
但我正在使用此页面中的代码:http: //coffeescriptcookbook.com/chapters/networking/basic-http-client
http = require 'http'
http.get { host: 'http://localhost:5000/off/Name1/Name2' }, (res) ->
data = ''
res.on 'data', (chunk) ->
data += chunk.toString()
res.on 'end', () ->
console.log data
我得到的错误是:
events.js:72
throw er; // Unhandled 'error' event
^
Error: getaddrinfo ENOTFOUND
at errnoException (dns.js:37:11)
at Object.onanswer [as oncomplete] (dns.js:124:16)
这让我相信它没有找到网址。
我能做些什么?