我有一个 codeigniter 模型函数,它查询数据库并将结果发送回控制器,编码为 json。
整个函数如下图所示:
function get_skufamily_cube($q){
$sql=("select min([Pieces]) as ProductCode from
(SELECT
[ProductCode]
,[Description]
,[Length]
,[Pieces]
,[Thickness]
,[Width]
,([width]*1000) w2
,([thickness]*1000) t2
,REPLACE((convert(varchar,convert(decimal(8,1),length))),'.','') AS l2
,concat(([width]*1000),([thickness]*1000),REPLACE((convert(varchar,convert(decimal(8,1),length))),'.','')) AS pc
,REPLACE([ProductCode],concat(([width]*1000),([thickness]*1000),REPLACE((convert(varchar,convert(decimal(8,1),length))),'.','')),'') as grade
,CONCAT(([width]*1000),([thickness]*1000),REPLACE([ProductCode],concat(([width]*1000),([thickness]*1000),REPLACE((convert(varchar,convert(decimal(8,1),length))),'.','')),'')) as options
FROM [hammerhead].[dbo].[ProductList]) as p
where Options like '%$q%' ");
$query=$this->db->query($sql);
if($query->num_rows > 0){
foreach ($query->result_array() as $row){
$row_set[] = htmlentities(stripslashes($row['ProductCode']));
echo $row['ProductCode']; // to see database result and troubleshoot
}
$this->output->set_content_type('application/json')->set_output(json_encode($row_set));
}
}
$q 已成功传递给查询,并且查询的输出echo $row['ProductCode'];
与我需要的结果一致。在本例中为 108。数据库查询在单个字段中返回单个结果。
出于某种原因,这并没有正确地传回控制器。
控制器是:
$this->load->model('Sales_model');
if (isset($_POST['data'])){
$q = strtolower($_POST['data']);
$data = $this->Sales_model->get_skufamily_cube($q);
$this->output->set_content_type('application/json')->set_output(json_encode($data));
}
}
在我的开发人员工具中,我可以看到服务器响应
108NULL
。108
成为我的回声并NULL
成为 json 响应。如果我删除回声,这只是 NULL。
Laslty,我需要用该值填充表格行中的输入。我对此的看法 jquery 语法是:
$.post('get_skufamily_cubes', {data:selectedObj.value},function(result)
{
$(this).find('input[id^="cubesperbundle"]').val(result);
});
目前没有填充任何内容。html 输入名称和 id 是:cubesperbundle
但附加了行号,因此'input[id^="cubesperbundle"]'
任何援助将不胜感激。
谢谢并恭祝安康,