好的,所以我将 cakephp 1.2、jquery 和 ajax 与 JSON 结合使用。这是我正在做的事情:
当一个人输入员工 id 时,我会得到该员工 id 的结果,如果有的话,我会将其作为$javascript->object(empInfo)
. 这工作正常。我将信息返回给函数,但我似乎无法处理它。我读过的所有内容都说将其用作$.each(empInfo, function()
. 这是我的代码:
COMMON.JS
$(document).ready(function() {
$('#emp_num').blur(function() {
if($(this).val().length != 0) {
$.ajax({
type: "POST",
datatype: "json",
url: '/ir_employees/getdetails/empId:' + $(this).val(),
success: function(empInfo) {
populateEmployeeInformation(empInfo);
}
});
}
});
});
function populateEmployeeInformation(empInfo) {
$.each(empInfo, function() {
console.log(this);
});
}
EMPLOYEES_CONTROLLER.PHP
function getdetails() {
$empId = $this->passedArgs['empId'];
$this->layout = 'ajax';
$this->set('empInfo', $this->IrEmployee->find('all',
array('conditions' =>
array('IrEmployee.employee_number' => $empId))));
}
获取详细信息.CTP
<?php
if((isset($empInfo))){
echo $javascript->object($empInfo);
}
?>
当我记录它时,我得到以下(截图):
如何正确使用以下信息(这是 Firebug 的“响应”):
[{"IrEmployee":{"id":"1","employee_number":"xxxxx","last_name":"Doe","first_name":"John","gender":"M","date_hired":"2013-04-09","date_of_birth":"1950-01-01","plant_id":"0"}}]