0

我正在尝试使用 http GET 方法来检索我创建的 JSON 对象,然后在 Titanium 中我创建了一个检索方法,但它只是检索“未定义”

def listJSON() {
   def converter = User.list() as JSON
   System.out.println(converter)
   render(converter)
   //response(converter)
}

grails 的输出是正确的,并且页面呈现(从系统输出):

[{"class":"testingmobile.User","id":1,"age":22,"email":"test@hotmail.com","name":"Ryan","occupation":"Whatever "}]

Titanium中移动应用程序的代码如下:

var url = "http://localhost:8080/TestingMobile/user/listJSON";
var client = Ti.Network.createHTTPClient ({
onload : function(e) {
    Ti.API.info("Recieved text: "+ this.responceText);
    var jsonObj = JSON.parse(this.responseText);
    getShow(jsonObj);
    alert('success');
},
onerror : function(e) {
    Ti.API.debug(e.error);
    alert('error');
},
timeout : 5000 
});
client.open("GET", url);
client.send(); 

控制台输出“收到的文本:未定义”

4

1 回答 1

0

responceText

应该

responseText

s,而不是c

于 2012-10-03T12:51:02.547 回答