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
如何实现这一点是我的疑问?
提前致谢。
答案 0 :(得分:2)
您应该将结果编码为json。而不是语句echo $data
使用
echo json_encode($data);
它将以json格式返回结果。像
{"id":23212,"place_name":"Holly Ridge"...}
并在您的JavaScript中,您可以访问您的数据