[Grails] as JSON 无法被 JQuery 使用

shogoganet 2010-03-12
使用 object as JSON 输出 JSON。 浏览器访问时提示下载文件,打开文件内容正常。
{"pair":{"name":"value"}}


使用JQUERY访问此URL,请求成功,但是数据为空。

JQUERY 代码如下: (来自JQUERY 官方网站)

$.getJSON("http://localhost:8080/phone/json",
      function(data) {
         alert("here");
         alert(data);
      }
);

输出 “here”, null.


服务器端 极为简单,object as JSON
romejiang 2010-03-13
在浏览器中打开 http://localhost:8080/phone/json ,看看具体内容,是否多输出了html,或者字符集不正确。

Grails的json和Jquery配合应该没有任何问题。我一直在这么用。
zeeeitch 2010-03-20
render object as JSON
注意有没有编译错
Global site tag (gtag.js) - Google Analytics