js代码:success: function (response) {alert(response);}
controller代码:@RequestMapping("/checklogin")@responsebodypublic String checkLogin() {return "error";}
js接受的字符是"error",而不是error,多了双引号如图
yfwxisqw1#
阅读下json规范 http://www.json.org/json-zh.html单字符串是由双引号包围的任意数量Unicode字符的集合
aydmsdu92#
感谢解答~
wnavrhmk3#
你可以debug看一下js的XHR对象,返回里不仅有responseText,还有responseJSON后面一个应该不会返回双引号
3条答案
按热度按时间yfwxisqw1#
阅读下json规范 http://www.json.org/json-zh.html
单字符串是由双引号包围的任意数量Unicode字符的集合
aydmsdu92#
感谢解答~
wnavrhmk3#
你可以debug看一下js的XHR对象,
返回里不仅有responseText,还有responseJSON
后面一个应该不会返回双引号