0

ajax函数的jQuery代码如下:

$(document).ready(function() {
$("#zip_code").keyup(function() {
    var el = $(this);
    var module_url = $('#module_url').val();

    if (el.val().length === 5) {
      $.ajax({
        url : module_url,
        cache: false,
        dataType: "json",
        type: "GET",
        data: {
            'request_type':'ajax', 
            'op':'get_city_state',
            'zip_code' : el.val()
        },
        success: function(result, success) { alert(result.join('\n'));
          $("#city").val(result.place_name);
          $("#state_code").val(result.state_code);
        }
      }); 
    }
  });
});

PHP代码片段如下:

case "get_city_state":

      // to get the city and state on zip code.
      $ret = $objUserLogin->GetCityState($request); 

      if(!$ret) { 
        $error_msg = $objUserLogin->GetAllErrors();
        list($data) = prepare_response($request);
        $smarty->assign('data', $data);    
      } else {
        $data = $objUserLogin->GetResponse();

        echo $data;
      }     

      die;
      break;

在 PHP 代码中,$data 包含以下方式的数据:

<pre>Array
(
    [id] => 23212
    [zip_code] => 28445
    [place_name] => Holly Ridge
    [state_code] => NC
    [created_at] => 1410875971
    [updated_at] => 1410875971
)
</pre>

从上面的数据(即响应将在 ajax 响应的变量结果中可用)我只想访问两个字段 place_name 和 state_code。

我尝试alert(result)在控制台中使用打印结果变量的内容,但我得到了这个词Array

如何实现这一点是我的疑问?

提前致谢。

4

1 回答 1

2

您应该将结果编码为 json。所以代替声明echo $data

利用

echo json_encode($data);

它将以 json 格式返回您的结果。喜欢

{"id":23212,"place_name":"Holly Ridge"...}

在您的 javascript 中,您可以访问您的数据

于 2014-11-05T11:16:29.427 回答