1

我在一个页面上遇到一个错误,其代码在另一个页面上可以完美运行......这里是:

$.each(json,function(index,element){
var tr = $("<tr>").appendTo($tabbody);
$(tr).append('<td><a target="_blank" href="forum.php?t='+element.topic_id+'">'+element.topic_nom+"</a></td>"+'<td>'+element.date_heure+"</td>");
});

json 是 php 页面上的 GET 请求的结果:

$data = $query->fetchAll(PDO::FETCH_ASSOC);
echo json_encode($data);

结果示例:

[
    {
    "topic_nom": "Deuxième question de linterro manip 5",
    "topic_id": "1",
    "user_nick": "Symael",
    "user_id": "1",
    "msg_id": "10",
    "date_heure": "2013-02-17 18:28:04"
    },
    {
    "topic_nom": "Quel est le sens de la vie ?",
    "topic_id": "2",
    "user_nick": "Symael",
    "user_id": "1",
    "msg_id": "10",
    "date_heure": "2013-02-17 18:28:04"
    }
]

哪个是有效的 Json ......我得到的错误是:

TypeError: invalid 'in' operand e
...ute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r...

如果我尝试 $.parseJSON(json); :

SyntaxError: JSON.parse: unexpected character
...ute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r...

当我在http://jsonlint.com/上验证我的 Json 时,结果是:

Parse error on line 1:
[    {        "to
^
Expecting '{', '['

如果手动重写第一个 [ 它突然变得有效。我想我是这里一个非常奇怪的故障的受害者,有人可以帮助我吗?哦


这是解决方案,请参阅 Stoive 的答案以获取解释。

  obj = $.parseJSON(json.trim());
    $.each(obj,function(index,element){
      var tr = $("<tr>").appendTo($tabbody);
      $(tr).append('<td><a target="_blank" href="forum.php?t='+element.topic_id+'">'+element.topic_nom+"</a></td>"+'<td>'+element.date_heure+"</td>");
    });
4

1 回答 1

4

很多时候,字节顺序标记可以潜入保存在记事本等编辑器中的文件中。

尝试获取json位置 0 的字符代码和console.log结果:

console.log(json.charCodeAt(0).toString(16));

You should be getting 5b as the result, and not something like feff. If that's the case, then JSON.parse(json.trim()) could help by removing the invisible whitespace characters.

于 2013-02-18T00:52:05.830 回答