ResponseText或其他东西使用Titanium不起作用

时间:2012-03-28 18:02:24

标签: android titanium responsetext

Heyy可以帮助我吗? 我有这个问题,仍然知道谁解决...钛显示错误,说“未捕获的ReferenceError:responseText未定义”,我尝试了很多选项,但嗯,不起作用。 这是我的代码

var xhr = Titanium.Network.createHTTPClient();
xhr.onload = function(){
    alert("voltou ao js");
    var json = JSON.parse(responseText);
    var response = JSON.parse(json);
    if (response.logged == true)
    {
        alert("voltou ao js e funca");
    }
    else
    {
        alert("-.-");
    }
};

button1.addEventListener('click',function(e)
{

    var params = box1.values ;
    xhr.open("GET","http://10.0.2.2/jobfinder/teste_demo_grafica/Resources/teste.php?");
    xhr.send(params);
});

1 个答案:

答案 0 :(得分:0)

该网址没有响应。您应该获得像fiddler或charles这样的Web调试代理,以便您可以看到您的Web流量。

另外,删除尾随?在地址之后,那是什么?

此外,尝试执行“POST”而不是“GET”某些服务器不允许使用该动​​词。

此外,在这种情况下,您将需要错误处理程序。