我收到错误说:
遇到PHP错误
严重性:注意
消息:未定义的变量:数据
文件名:views / businessinfo_view.php
我的模特:
function getPosts(){
$query = $this->db->query("SELECT * FROM customer WHERE
customer_id=12;");
return $query->result_array();
}
我的控制器:
function ind() {
$data['customerinfo'] = $this->user_model->getPosts();
$this->load->view('businesssinfo_view', $data);
}
我的观点:
<?php foreach($data as $d){?>
<tr>
<td><?php echo $d->customer_id;?></td>
<td><?php echo $d->first_name);?></td>
</tr>
<?php }?>
我尝试了100种不同的方法,仍然可以传递变量,我知道我的查询是正确的,我可以在控制器中获取和回显数据,我不能只是将它传递给视图。有人请帮帮我!
答案 0 :(得分:1)
function controller() {
$data['customerinfo'] = $this->user_model->getPosts();
$this->load->view('businesssinfo_view', $data);
}
每当您在视图中传递变量时,请尝试使用键内部视图访问它。
这个$customerinfo
变量将包含您的所有数据。
对于EX。 $customerinfo
因为您的实际变量为$data['customerinfo']
。
如果var名称为$data['extraVal']
,则通过$extraVal
进行查看访问。
答案 1 :(得分:0)
尝试使用$data['customerinfo']
,然后使用$customerinfo
http://www.codeigniter.com/user_guide/general/views.html#creating-loops
控制器
function ind() {
$data['customerinfo'] = array();
$data['customerinfo'] = $this->user_model->getPosts();
$this->load->view('businesssinfo_view', $data);
}
模型
function getPosts(){
$this->db->where('customer_id', '12');
$query = $this->db->get('customer');
return $query->result_array();
}
查看
<?php foreach($customerinfo as $d){?>
<tr>
<td><?php echo $d['customer_id'];?></td>
<td><?php echo $d['first_name'];?></td>
</tr>
<?php }?>
当model函数返回result_array()<?php echo $d['first_name'];?>
当模型函数返回result()<?php echo $d->first_name;?>
找到示例here
答案 2 :(得分:0)
试试这个:
我的模特:
function getPosts(){
$query = $this->db->query("SELECT * FROM customer WHERE
customer_id = '12' ");
return $query->result();
}
我的控制器:
function ind() {
$data['customerinfo'] = $this->user_model->getPosts();
$this->load->view('businesssinfo_view', $data);
}
我的观点:
<?php
if(!empty($customerinfo))
{
foreach($customerinfo as $d){?>
<tr>
<td><?php echo $d->customer_id;?></td>
<td><?php echo $d->first_name;?></td>
</tr>
<?php }
}
else{
echo 'Some problem with the variable !! :(';
}
?>