0

我有这段代码可以将json字符串中的值保存在会话变量中,我从ajax调用

我有以下代码:

(function ($) { 

    Drupal.behaviors.MyfunctionTheme = {
        attach: function(context, settings) {

     $('.add-music').click(function () {
         var songNew = JSON.stringify({
             title: $(this).attr('data-title'),
             artist: $(this).attr('data-artist'),
             mp3: $(this).attr('href')
         });
         var songIE = {json:songNew};
         $.ajax({
             type: 'POST',
             data: songIE,
             datatype: 'json',
             async: true,
             cache: false                
         })
         .done(
              //this is the callback function, which will run when your POST request returns
            function(postData){
                //Make sure to test validity of the postData here before issuing the GET request
                var session;
                $.ajaxSetup({cache: false})
                $.get('/getsession.php', function (getData) {
                      session = getData;
                        alert(session);
                });

              }
         );

     });

}}

})( jQuery );

我有以下代码可以正常工作,我刚刚打印了以下警报:

["{\"title\":\"El Derecho de las Mujeres a La Comunicaci\u00f3n\",\"artist\":\"\",\"mp3\":\"http:\/\/red.comppa.com\/sites\/default\/files\/audios\/Cun%CC%83aDerechoMujeresaLaComunicacion.mp3\"}","{\"title\":\"Objetivos del encuentro internacional de Derechos Humanos en el Bajo Aguan.\",\"artist\":\"\",\"mp3\":\"http:\/\/red.comppa.com\/sites\/default\/files\/audios\/objetivos_del_encuentro_dh.mp3\"}"]

我需要有这样的东西:

[
  {
    title:"Cro Magnon Man",
    artist:"The Stark Palace",
    mp3:"http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3"
  },
  {
    title:"Hidden",
    artist:"Miaow",
    mp3:"http://www.jplayer.org/audio/mp3/Miaow-02-Hidden.mp3"
  }
]

我如何使用 jquery 处理这些数据?

谢谢

4

4 回答 4

2

假设数据存储在一个名为的变量中,yourObject您可以执行以下操作:

var result = JSON.parse("["+yourObject[0]+"]");

这是一个工作箱

于 2013-03-28T19:31:04.427 回答
0

这就是JSON.parse()设计的目的。Eval()不是在这里使用的方法。澄清一下,JSON.parse()采用有效的、适当转义的 JSON 字符串并将它们转换为 Javascript 中的可用对象。eval()另一方面,它旨在获取字符串并尝试将它们作为 Javascript 函数、对象、变量等执行。

于 2013-03-28T19:36:05.667 回答
0

您的示例输入实际上是一个字符串数组。您需要将数组中的每个元素解析为一个对象。使用 jQuery:

var input = ["{\"title\":\"El Derecho de las Mujeres a La Comunicaci\u00f3n\",\"artist\":\"\",\"mp3\":\"http:\/\/red.comppa.com\/sites\/default\/files\/audios\/Cun%CC%83aDerechoMujeresaLaComunicacion.mp3\"}","{\"title\":\"Objetivos del encuentro internacional de Derechos Humanos en el Bajo Aguan.\",\"artist\":\"\",\"mp3\":\"http:\/\/red.comppa.com\/sites\/default\/files\/audios\/objetivos_del_encuentro_dh.mp3\"}"];

var resultArray = new Array();

for(var i = 0; i < input.length; i++){
    var parsedElement = $.parseJSON(input[i]);
    resultArray.push(parsedElement);
}
于 2013-03-28T19:36:32.653 回答
0
var display = JSON.stringify(jsonObject, undefined, 2); // indentation level = 2
于 2013-03-28T19:38:09.020 回答