我可以在heroku上获得免费帐户的IP地址吗?

时间:2015-05-13 20:07:06

标签: heroku socket.io web-hosting

我想在heroku的免费帐户

上部署 socket.io 制作的聊天应用

适用于本地IP - 127.0.0.1

静态Ip - .....

但现在我想在heroku上免费帐户部署应用

heroku给了我

  

url:https://pure-savannah-3208.herokuapp.com/

在Socket.io中我想把ip地址放在这里

    var socket = io.connect('http://192.168.0.102');/*How will i get ip address*/
    $('form').submit(function(){
        socket.emit('chat message', $('#m').val());
        $('#m').val('');
        return false;
    });
    socket.on('chat message', function(msg){
        $('#messages').append($('<li>').text(msg));
    });

heroku是否提供免费帐户的IP地址

有没有其他方法可以使用这种情况。?

1 个答案:

答案 0 :(得分:2)

Socket.io接受域名,而不仅仅是IP地址。

你不需要做任何事情。