admin管理员组

文章数量:1343326

what is the error here :

.done(function(data) {
                var json = JSON.parse( data );
                if(json['status'] === "success"){
                    //some processing
                }
                else {
                    alert( "error 2" );
                }
            })

I got the error message on: var json JSON.parse('('+data+')')

data is returned from a php script :

/*...............*/
$sql->execute();
$i = 0;
while($result = $sql->fetch(PDO::FETCH_ASSOC){
    $response["affiliates"][i]["affiliate_name"] = $result["coupon_name"];
    $response["affiliates"][i]["affiliate_id"] = $result["coupon_id"];
    $i++;
}
$response["status"] = "success";
echo json_encode($response); 

what is the error here :

.done(function(data) {
                var json = JSON.parse( data );
                if(json['status'] === "success"){
                    //some processing
                }
                else {
                    alert( "error 2" );
                }
            })

I got the error message on: var json JSON.parse('('+data+')')

data is returned from a php script :

/*...............*/
$sql->execute();
$i = 0;
while($result = $sql->fetch(PDO::FETCH_ASSOC){
    $response["affiliates"][i]["affiliate_name"] = $result["coupon_name"];
    $response["affiliates"][i]["affiliate_id"] = $result["coupon_id"];
    $i++;
}
$response["status"] = "success";
echo json_encode($response); 
Share Improve this question edited Jul 16, 2014 at 20:54 Tarik Mokafih asked Jul 16, 2014 at 20:44 Tarik MokafihTarik Mokafih 1,2578 gold badges19 silver badges39 bronze badges 2
  • 1 It's probable data isn't some JSON... – Denys Séguret Commented Jul 16, 2014 at 20:45
  • 1 Why are you adding () around it? not {}? – bestalign Commented Jul 16, 2014 at 20:46
Add a ment  | 

3 Answers 3

Reset to default 4

Look at the spec for JSON (easily understood version here: http://json/). There is nowhere that says that parenthesis are valid. ({"foo": true}), for example will never parse. It may be evaled as it is valid javascript, but javascript is not JSON.

Because it's wrong.

"(1)" (for example) is not a valid JSON string. Why are you pasting those parens on at all?

JSON format only use curly and squared braces. You shouldn't append parentheses.

本文标签: