我的模型中有一个使用连接的查询,并将查询结果作为数组返回
result_array();
然后我将该结果返回给我的控制器,我称之为模型。
$data = $this->Model->show();
foreach($data as $val)
{
$arr[$val['recipename']] = $val['componentname'];
}
if($data != null)
{
$this->load->view('Admin\success',$arr);
}
我原本没有$ arr值。我刚刚将它添加到那里以使阵列更清晰。无论如何,无论有没有。
var_dump($data)
和var_dump($arr)
或即使我$recipename
或$componentname
也是空的。
返回null。说它们是不确定的。
我不知道出了什么问题。
我读了这个问题。这就是为什么我做了$ arr所以我可以把它变成一个单独的数组,所以当它转移时它将被提取并试图回应它们但无济于事。
Codeigniter passing data from controller to view
编辑:
查询工作正常,它返回值。
$sample = $this->db->select('recipe.recipename,component.componentname')->from('recipe')
->join('recipecomponent','recipe.recipeid = recipecomponent.recipeid')
->join('component','component.componentid = recipecomponent.componentid')
->group_by('recipe.recipeid')
->get()
->result_array();
return $sample;
答案 0 :(得分:0)
$data
很可能是空的,你正在迭代一个空数组。
一种简单的调试方法如下:
echo '<div style="padding:15px; background-color:white;"><pre>'.print_r($data, true).'</pre></div>';
或强>
echo '<div style="padding:15px; background-color:white;"><pre>'.print_r($this->Model->show(), true).'</pre></div>';
您还应该启用__construct
中的错误报告,如下所示:
error_reporting(E_ALL);
如果print_r()
显示一个空数组,那么您的模型没有返回任何数据,您的问题的答案可能是您需要修复查询。
答案 1 :(得分:0)
将数据数组传递到视图后,数组键将变为变量。例如,在foreach
循环后,您的$arr
变量就是这样的数组
array [
'cheese' => 'brie'
'cookie' => 'chocolate chips'
]
然后,您可以通过在视图中执行以下操作来访问$arr['cheese']
echo $cheese;
尝试访问视图中的$data
或$arr
将无效,因为它们不在范围内