为什么我的JSON响应未按预期显示?

时间:2012-03-12 00:53:42

标签: javascript jquery ajax json

我在页面上有两个表单。同上。相同。但在一方面,它在另一方面表现得很好。它不会在正确的位置显示任何内容,而只是原始的JSON输出。

{"isSuccessful":false,"message":"
The Username field is required<\/p>\n
The Password field is required<\/p>\n"}

enter image description here

1 个答案:

答案 0 :(得分:0)

如果这实际上是如何格式化JSON,那么它就不是有效的JSON。它需要

{"isSuccessful":false,"message":"The Username field is required<\/p>\nThe Password field is required<\/p>\n"}

(注意它是如何在一行上 - 在http://jsonlint.com/处查看。)