【发布时间】:2015-10-16 04:25:59
【问题描述】:
谁能告诉我为什么我的服务器地址(主机)是 :: 而不是 localhost
var express = require('express');
var app = express();
// respond with "hello world" when a GET request is made to the homepage
app.get('/', function(req, res) {
res.send('hello world');
});
var server = app.listen(3000, function () {
var host = server.address().address;
var port = server.address().port;
console.log('Example app listening at http://%s:%s', host, port);
});
返回
Example app listening at http://:::3000
当我转到http://localhost:3000/时它工作正常
【问题讨论】: