模型
public function cart()
{
$this->load->model('Cart_model');
$this->load->view('head');
$data['pricing'] = $this->Cart_model->R_products();
$this->load->view('cart', $data);
$this->load->view('footer');
}
看法
var_dump($data);
这会产生错误“遇到PHP错误
严重性:通知
消息:未定义变量:数据
文件名:views/cart.php
行号:4"
但是,如果我插入我的VIEW
$data = $this->Cart_model->R_products();
那么一切都很好。但是为什么控制器不做它的工作呢?
模型
class Cart_model extends CI_Model {
function R_products()
{
return $this->db->get('pricing')->result();
}
}