我正在使用now.js,这条线引用了localhost。为了让某人在外面访问服务器,我需要将localhost修改为我电脑的当前外部ip(我的ip是动态的)。有没有办法从脚本中检测当前的外部IP?
window.now = nowInitialize("//localhost:8081", {});
答案 0 :(得分:3)
你可以问一个像this one这样的外部服务(这很好,因为它返回它而没有格式化)。
要使用它,您可以使用Node's built in http
module:
require('http').request({
hostname: 'fugal.org',
path: '/ip.cgi',
agent: false
}, function(res) {
if(res.statusCode != 200) {
throw new Error('non-OK status: ' + res.statusCode);
}
res.setEncoding('utf-8');
var ipAddress = '';
res.on('data', function(chunk) { ipAddress += chunk; });
res.on('end', function() {
// ipAddress contains the external IP address
});
}).on('error', function(err) {
throw err;
});
请记住,外部服务可能会崩溃或发生变化 - 这已经发生过一次,这个答案无效。我已经更新了,但这可能会再次发生......