我是代码点火器的新手,我正在研究电子商务模板。默认情况下,每当点击index()
时,它都会在不同部分(html(中显示所有产品,我想使它动态化,所以我应该在index()
中使用查询来获取不同类型的记录还是有任何其他方法?这是我的代码:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
//echo "hello world";
$this->load->view('index');
}
}
?>
首先需要根据您的要求创建数据库和表。 然后你可以创建模型作为参考,检查这个链接:https://www.codeigniter.com/userguide3/general/models.html
<?php
class Blog_model extends CI_Model {
public function get_data_first()
{
$query = $this->db->get('entries', 10);
return $query->result();
}
public function get_data_second()
{
$query = $this->db->get('entries', 10);
return $query->result();
}
}
?>
制作模型后,转到您的控制器并包含它,如下所示:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
$this->load->model('my_model');
$data['first_list'] = $this->my_model->get_data_first();
$data['second_list'] = $this->my_model->get_data_second();
//echo "hello world";
$this->load->view('index', $data);
}
}
?>
然后在索引文件中使用你的参数,如:
<html>
<head></head>
<body>
<?php
if($first_list){
foreach($first_list as $each){
echo $each->my_param;
}
}
?>
<?php
if($second_list){
foreach($second_list as $each){
echo $each->my_param2;
}
}
?>
</body>
</html>
我希望这对您有所帮助。
在"模型"文件夹中写入Home_model.php用于查询数据库的文件。 假设您有一个名为"产品"的表。
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home_model extends CI_Model{
public function __construct()
{
parent::__construct();
}
public function getProducts()
{
$this->db->from('products');
$query=$this->db->get();
$out = $query->result_array();
return $out;
}
}
"获取产品">功能将从"产品"表中获取所有产品。 现在在控制器中加载"数据库"库和模型。
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->model('home_model');
$this->load->library('database');
}
public function index(){
$products = array();
$products = $this->home_model->getProducts();
$this->load->view('index',$products);
}
}
在控制器的索引函数函数中,您可以调用模型的"getProduct"函数。并且可以传递数据进行查看。
模型的文档链接。
在此处输入链接说明
我希望这有所帮助。