参考我之前的帖子: Invoking http adapter procedure failure
我收到网络服务器的回复后。我收到以下错误:
{
"errors": [
"Runtime: Failed to read the HTTP response to: \/login.php?username=kevin&password=pass \nFailed to parse JSON string\n{\"True\":1} \n<!-- Hosting24 Analytics Code -->\n<script type=\"text\/javascript\" src=\"http:\/\/stats.hosting24.com\/count.php\"><\/script>\n<!-- End Of Analytics Code -->"
],
"info": [
],
"isSuccessful": false,
"warnings": [
]
}
我可以帮助解决这个问题吗?
答案 0 :(得分:0)
尝试以下方法:
将returnedContentType
更改为&#34; plain&#34;。这将使服务器将内容作为大字符串返回,而不是尝试解析它。然后在适配器中,您可以使用var obj = JSON.parse(response.text)
。