JavaScript:函数之间的变量值丢失

时间:2009-12-02 08:15:51

标签: javascript jquery scope each

我有以下代码

function updateSliderContent(json) {  //<- json defined here is correct
   var screen_order = json.screen_order.split('_');
   jQuery.each(screen_order, function(i, item) {
      var screen_id = item;
      //at this point it is not, thus the function does not execute whatever is in the if blocks
      if (json[screen_id].action == 'add') {
         //doSomething  
      } else if (json[screen_id].action == 'remove') {
         //doSomthingElse
      };
   }
}

我的问题是,不知何故,json(来自AJAX调用的对象)的值在jquery的每个函数中都会丢失。我还没有找到原因,也没有找到解决方法。谷歌没有给我我想要的答案。

编辑1

这是实际的电话。

function updateSlider() {
   var screenOrder = '';
   jQuery('div#slider td').each(function(i, item) {
      screenOrder += this.abbr + '_';
   })
   var ajaxData = {
      sid: sid,
      story: story,
      date: theDate,
      screenOrder: screenOrder,
      mode: 'ajax_update_slider'
   };
   jQuery.ajax({
      data: ajaxData,
      dataType: 'json',
      success: function (json) {
         updateSliderContent(json);
      }
   });
   theDate = Math.round(new Date().getTime()/1000.0); //UNIX Timestamp
   sliderTimer = setTimeout('updateSlider();',15000);
};

5 个答案:

答案 0 :(得分:2)

我尝试并失败了,在JS Bin上重现你的问题:
http://jsbin.com/ereha(可通过http://jsbin.com/ereha/edit编辑)

到目前为止,您向我们展示的代码似乎完全正常,因此问题必须由您的代码或系统的其他部分引起。如果我们不知道问题是什么,我们都只是在黑暗中拍摄。

请尝试在http://jsbin.com上重现问题,我们可以帮助您。

完整的源代码

的index.html

<!doctype html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>http://stackoverflow.com/questions/1831384/javascript-variable-value-gets-lost-between-functions</title>
    <script type="text/javascript" src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript">
      $.ajaxSetup({url: 'test.json'});

      function updateSliderContent(json) {  //<- json defined here is correct
        var screen_order = json.screen_order.split('_');
        jQuery.each(screen_order, function(i, item) {
          var screen_id = item;
          //at this point it is not, thus the function does not execute whatever is in the if blocks
          if (json[screen_id].action == 'add') {
            console.log(screen_id, 'action add');
          } else if (json[screen_id].action == 'remove') {
            console.log(screen_id, 'action remove');
          };
        });
      }

      function updateSlider() {
        var ajaxData = {};
        jQuery.ajax({
          data: ajaxData,
          dataType: 'json',
          success: function (json) {
            updateSliderContent(json);
          }
        });
        // theDate = Math.round(new Date().getTime()/1000.0); //UNIX Timestamp
        sliderTimer = setTimeout('updateSlider();',15000);
      };

      $(updateSlider);
    </script>
  </head>
  <body>
  </body>
</html>

test.json

{
  'screen_order': 'foo_bar_baz',
  'foo': {
    'action': 'add'
  },
  'bar': {
    'action': 'add'
  },
  'baz': {
    'action': 'remove'
  }
}

答案 1 :(得分:1)

jQuery.each似乎没有任何问题,因为我无法重现你的问题。

        function alertName (json) {
            var a = new Array();
            a.push(1);
            a.push(2);

            jQuery.each(a, function(i, item) {
                alert(json[0].name);
                alert(json[1].name);
            });
        }

        var andre = { name: "André" }
        var joana = { name: "Joana" }

        var arrayOfJson = new Array();
        arrayOfJson.push(andre);
        arrayOfJson.push(joana);

        alertName(arrayOfJson);

alertName()功能完全正常。 json参数在jQuery.each函数

中不会丢失

这似乎是您实施的一个问题,这是您没有告诉我们的事情。请尽量将您的问题“压缩”为工作样本并向我们展示,以便我们可以自己尝试:)

答案 2 :(得分:0)

您确定json是一个对象吗?也许它是一个json-string?在使用之前,你应该eval 如果您通过$.ajax()致电,请不要忘记添加dataType:'json'作为选项......

答案 3 :(得分:0)

if()子句中的

托盘使用 item.action ,因为如果json数据是一个对象数组, item 将包含每个对象,但这只是我的假设

答案 4 :(得分:0)

我认为你应该确保在服务器端的json响应之后调用函数 updateSliderContent

以下代码不起作用:

    var json = {};

    $.getJSON("/url/", {}, function(data){
        json = data;
    });

    //we call our function before the server response
    //and the json will be just blank object
    updateSliderContent ( json );

所以,请看看你的代码,因为有时我们会毫无意外地做这样的事情。

如果服务器真的响应了正确的json,下面的代码应该可以工作,json对象不能为空。

    $.getJSON("/url/", {}, function(json){
        //we call only after the response from server
        updateSliderContent ( json );
    });