在XPages中通过javascript获取客户端计算机的本地IP地址

在XPages中通过javascript获取客户端计算机的本地IP地址,javascript,xpages,Javascript,Xpages,我需要找到客户端本地Ip地址,然后需要将其写入文档中。下面的代码运行良好,但仅限于Chrome和Firefox。它在IE上不起作用。 有没有办法让它在IE上工作?我还获得了计算机的IP地址,然后在用户登录时将其保存在某个日志数据库中 <h3 id="list"> <xp:text escape="true" id="localIP" value="#{sessionScope.localIP}"> </xp:text></h3> &

我需要找到客户端本地Ip地址,然后需要将其写入文档中。下面的代码运行良好,但仅限于Chrome和Firefox。它在IE上不起作用。 有没有办法让它在IE上工作?我还获得了计算机的IP地址,然后在用户登录时将其保存在某个日志数据库中

<h3 id="list"> <xp:text escape="true" id="localIP"
    value="#{sessionScope.localIP}">
 </xp:text></h3> 

 <xp:scriptBlock id="scriptBlock1">
        <xp:this.value><![CDATA[var RTCPeerConnection = window.RTCPeerConnection || window.webkitRTCPeerConnection || window.mozRTCPeerConnection;

if (RTCPeerConnection) (function () 
{
    var rtc = new RTCPeerConnection({iceServers:[]});
    if (1 || window.mozRTCPeerConnection) 
    { 
        rtc.createDataChannel('', {reliable:false});
    };

    rtc.onicecandidate = function (evt) 
    {
        if (evt.candidate) grepSDP("a="+evt.candidate.candidate);
    };
    rtc.createOffer(function (offerDesc) 
    {
        grepSDP(offerDesc.sdp);
        rtc.setLocalDescription(offerDesc);
    }, function (e) { console.warn("offer failed", e); });

    var addrs = Object.create(null);
    addrs["0.0.0.0"] = false;
    function updateDisplay(newAddr) 
    {
        if (newAddr in addrs) return;
        else addrs[newAddr] = true;
        var displayAddrs = Object.keys(addrs).filter(function (k) { return addrs[k]; });
        document.getElementById('list').textContent = displayAddrs.join(" or perhaps ") || "n/a";
    }

    function grepSDP(sdp) 
    {
        var hosts = [];
        sdp.split('\r\n').forEach(function (line) 
        { 
            if (~line.indexOf("a=candidate")) {      
                var parts = line.split(' '),       
                    addr = parts[4],
                    type = parts[7];
                if (type === 'host') updateDisplay(addr);
            } else if (~line.indexOf("c=")) {  
                var parts = line.split(' '),
                    addr = parts[2];
                updateDisplay(addr);
            }
        });
    }
})(); else {
    document.getElementById('list').innerHTML = "n/a";  //"<code>ifconfig | grep inet | grep -v inet6 | cut -d\" \" -f2 | tail -n1</code>";
    document.getElementById('list').nextSibling.textContent = "Displayed Automaticly";
}
]]></xp:this.value>
    </xp:scriptBlock>

看到HTTP请求中的IP了吗?它是本地IP。结果就是我所需要的。但它在IE上仍然不起作用:(这就是你的意思?对吗?那么评论表单@PerHenrikLausten对你没有帮助,它只会返回代理的ip。IE对象窗口.msrtpeerConnection也不起作用。