钛XHR无法连接服务器

发布于 2025-01-06 22:53:12 字数 549 浏览 0 评论 0原文

我试图让使用 Titan 的 Android 应用程序通过 xhr 连接本地主机,这是代码:

    function e (){
    var xhr = Titanium.Network.createHTTPClient();
    xhr.onload = function()
    {
        alert(xhr.responseText);
     };
    xhr.onerror = function()
    {
        alert("Error");
    };
    xhr.open("GET","http://localhost/test.php");
    xhr.send();}  

我收到错误,这出现在进程跟踪中:

I/TiHttpClient( 211): (TiHttpClient-1) [16,27717] 发送错误 与 http://localhost 的连接被拒绝

I' trying to let android app using titanium connect the localhost via xhr, here is the code:

    function e (){
    var xhr = Titanium.Network.createHTTPClient();
    xhr.onload = function()
    {
        alert(xhr.responseText);
     };
    xhr.onerror = function()
    {
        alert("Error");
    };
    xhr.open("GET","http://localhost/test.php");
    xhr.send();}  

I get an error, and this appears in the process trace:

I/TiHttpClient( 211): (TiHttpClient-1) [16,27717] Sending error
Connection to http://localhost refused

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奢欲 2025-01-13 22:53:12

Android 模拟器有自己的网络接口,因此 localhost 是模拟器,而不是您的主机。您需要使用IP地址10.0.2.2来访问运行模拟器的机器。请参阅http://juristr.com/blog/2009/10 /从您的主机访问主机/

the Android Emulator has its own network interface, so localhost is the emulator, not your host machine. You need to use the IP address 10.0.2.2 to access the machine that the emulator is running on. See http://juristr.com/blog/2009/10/accessing-host-machine-from-your/

鱼忆七猫命九 2025-01-13 22:53:12

尝试用你的IP打开。就像

 xhr.open("GET","http://xxx.xxx.xxx.xxx/test.php");

(我用 Objective C 完成了这个,而不是用 Titanium。但你可以尝试一下)

编辑

定义端口号

xhr.open("GET","http://xxx.xxx.xxx.xxx:8888/test.php");

Try to open with your IP. Like

 xhr.open("GET","http://xxx.xxx.xxx.xxx/test.php");

(I've done this with Objective C not with Titanium. But you can give it try)

EDIT

Define Port number

xhr.open("GET","http://xxx.xxx.xxx.xxx:8888/test.php");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文