4

问题

我的一些 json 数据出现解析错误,因为它包含单引号。例如,我的一些数据可能如下所示:

“拉里的数据”

我已阅读以下文章: JSON 响应中的 jQuery 单引号

我一直在尝试实施一些解决方案,但我无法摆脱我的解析错误。

代码

在我的模型中,我使用 lua 库将我的数据编码为 json。该模型返回如下所示的数据:

[{\"createddatetime\":\"2013-09-10 17:56:55\",\"description\":\"John Doe\'s phone\",\"number\":\"72051\",\"createdname\":\"conversion script\",\"user\":\"23123\",\"position\":\"46\",\"id\":\"49\",\"user_id\":\"822\",\"password\":\"rwer234\"}]"

在我看来,我的代码目前如下所示:

  $.ajax({
      url:myurl + '?startpos=' + page_index * items_per_page + '&numberofrecordstograb=' + items_per_page + '&viewtype=json',

      success: function(data){            

            console.log('inside');    
             for(var i=0;i<data.length;i++) {
                        var deviceobj = data[i];                        
                        newcontent = newcontent + "<TR>";
                        newcontent=newcontent + '<TD>';    

                        //add EDIT hyperlink
                        if ($("#editdevicesettings").val() == "true") {              
                            var temp  = $("#editlinkpath").val();
                            newcontent=newcontent +  temp.replace("xxx",deviceobj["device_id"]) + '&nbsp;&nbsp;';
                        } 

                        //add DELETE hyperlink
                        if ($("#deletedevice").val() == "true") {              
                            var temp  = $("#deletelinkpath").val();
                            newcontent=newcontent +  temp.replace("xxx",deviceobj["device_id"]);
                        }                                 
                        newcontent=newcontent + '</TD>';

                        newcontent=newcontent + '<TD>' + deviceobj["number"] +'</TD>';
                        newcontent=newcontent + '<<TD>' + deviceobj["user"] + '</TD>';
                        newcontent=newcontent + '<<TD>' + deviceobj["password"] + '</TD>';
                        if (deviceobj["name"]) {
                              newcontent=newcontent + '<TD>' + deviceobj["name"] + '</TD>';
                        } 
                        else  {
                             newcontent=newcontent + '<TD>&nbsp;</TD>';
                        }
                        newcontent=newcontent + '<TD>' + unescape(deviceobj["description"])  + '</TD>';
                        newcontent = newcontent + "</TR>";         
                }// end for 
                // Replace old content with new content
                $('#Searchresult').html(newcontent);                    
            }//end if

      },
      error: function(request, textStatus, errorThrown) {
        console.log(textStatus);
        console.log('========');
        console.log(request);

      },
      complete: function(request, textStatus) { //for additional info
        //alert(request.responseText);
        console.log(textStatus);
      }
    });

但是我仍然在这个特定的记录上得到解析错误。

任何建议,将不胜感激。谢谢。

编辑 1

我改变了我的逻辑,所以当它失败时,它会在控制台中打印出“request.responseText”。这是它的样子:

"[{\"createddatetime\":\"2013-09-10 17:56:55\",\"description\":\"John Doe\'s phone\",\"number\":\"72051\",\"createdname\":\"conversion script\",\"user\":\"28567\",\"position\":\"46\",\"id\":\"49\",\"user_id\":\"822\",\"password\":\"rwer234\"}]"

撇号仍然逃脱。

编辑 2

这是我的代码在服务器端(又名模型中)的样子:

get_device_records = function(ajaxdata)
   local results = list_devices(nil,false,ajaxdata.startpos, ajaxdata.numberofrecordstograb)
   return results.value
end
4

4 回答 4

6

看起来您正在服务器端进行双重序列化。例如,如果您的 Web 框架自动序列化返回的对象,但您对对象进行了额外显式、不必要的序列化调用,则会发生这种情况。您的代码在没有 ' 案例的情况下工作的事实证明了这一点:jquery 会自动进行一次解析(因为 dataType),然后您运行另一个 parseJSON。那不应该工作:) 在服务器端修复您的序列化并从您的成功方法中删除不必要的 parseJSON 调用。所有其他解决方案都只是一种解决方法,而不是真正的解决方案。

于 2013-10-10T19:00:56.357 回答
4

尝试更换

data = data.replace("\\'", "'");

data = data.replace(/[\\"']/g, '\\$&').replace(/\u0000/g, '\\0');

我在解析 JSON 数据时遇到了类似的问题,这个来自另一个答案的代码解决了它

于 2013-10-10T18:43:07.363 回答
1

这是 json4lua 0.9.40 库的 lua json.encode 函数中的一个错误。它错误地转义了单引号。这在 0.9.50 中得到纠正:

https://github.com/craigmj/json4lua

于 2014-07-20T15:36:13.157 回答
0

只需从 json 响应中取出 \\ 即可。我的意思是,按原样传递单引号,如下所示:

[{\"createddatetime\":\"2013-09-10 17:56:55\",\"description\":\"John Doe's phone\",\"number\":\"72051\",\"createdname\":\"conversion script\",\"user\":\"23123\",\"position\":\"46\",\"id\":\"49\",\"user_id\":\"822\",\"password\":\"rwer234\"}]"
于 2013-10-10T18:52:55.390 回答