gpt4 book ai didi

codeigniter - 这是在 CodeIgniter 中使用 Controller 和 View 的好方法吗?

转载 作者:行者123 更新时间:2023-12-04 03:30:19 24 4
gpt4 key购买 nike

CodeIgniter 中使用 Controller / View 的最佳方式是什么? ?

以下是制作我的页面的糟糕方法吗?

function index()
{
$this->load->library('carabiner');
$this->load->view('include/head');
$this->load->view('include/home');
$this->load->view('top');
$this->load->view('featured');
$this->load->view('eventslist');
$this->load->view('footer');
}

function create()
{
$this->load->view('include/head');
$this->load->view('top');
$this->load->view('page');
$this->load->view('dynamicstuff');
$this->load->view('footer');
}

我正在以这种方式进行准模板化,它可以很好地获取网站的轮廓,但这是创建应用程序的最佳方式吗?我已经在 CodeIgniter 中工作了大约一个星期,而且我是 PHP 的新手。

最佳答案

我会为每个函数加载一个 View :

function index()
{
$this->load->library('carabiner');
$this->load->view('index');
}

function create()
{
$this->load->view('create');
}

然后包含其他模板文件,例如对于 index.php:

<?php 
include 'include/head';
include 'include/home';
include 'top';
include 'featured';
include 'eventslist';
include 'footer';
?>

当然,您可以将这些 View 本身分组,然后包含一个本身包含标题和导航等的 View 。

关于codeigniter - 这是在 CodeIgniter 中使用 Controller 和 View 的好方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1174543/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com