开发者

jQuery 1.4 breaks my program

I am pulling html from my database with a jquery ajax request.

However, if there is a single quote ('), I get a parsing error.

Regular quotes work fine (").

For example, in my database I have:

style=font-family:"times' ne开发者_JS百科w roman"

(I put the ' in there after times for testing). With the ' gone it works...

I start the request:

$.ajax({
       url: "phps/file.php?id="+id,
       dataType: "json",
       error: function(uno,dos,tres){

My php file does:

$code = mysql_real_escape_string($results['code']);
//return
header('Content-type: application/x-json');
echo '{';
echo '"code": "' . $code. '"';
echo '}';

The jquery error function gives me:

[object XMLHttpRequest]
parsererror
undefined

I think this is the issue, but I don't know how to fix it:

We are now strict about incoming JSON and throw an exception if we get malformed JSON. If you need to be able to evaluate malformed JSON that is valid JavaScript, you can make a text request and use eval() to evaluate the contents.

Thanks!


I would change your PHP to:

header('Content-Type: application/json');
echo json_encode(array('code' => $code));

Namely, change the MIME type to application/json and use PHP's native json_encode() rather than manually constructing JSON.


I think the best thing to do would be to use json_encode:

header('Content-type: application/x-json');
echo json_encode($results);`

Or you could replace the " with \" in the string and it should be valid JSON from what I can see. str_replace("\"", "\\"", $code)

Or if neither of those options work, do the text request with jQuery. I'm not sure on the exact syntax though.

This JSON Validator may prove useful to you: http://jsonformatter.curiousconcept.com/

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜