CI(CodeIgniter)框架使用一個名為視圖(View)的組件來進(jìn)行頁面渲染。以下是在CodeIgniter 4中進(jìn)行視圖渲染的步驟:
首先,確保你已經(jīng)安裝了CodeIgniter 4,并在app/Config/App.php
文件中啟用了視圖服務(wù)。
在app/Views
目錄下創(chuàng)建一個新的視圖文件。例如,我們可以創(chuàng)建一個名為welcome.php
的文件,內(nèi)容如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to CodeIgniter 4</title>
</head>
<body>
<h1>Welcome to CodeIgniter 4!</h1>
</body>
</html>
Welcome.php
的控制器文件,內(nèi)容如下:<?php
namespace App\Controllers;
use CodeIgniter\Controller;
class Welcome extends Controller
{
public function index()
{
// 渲染welcome.php視圖文件
return view('welcome');
}
}
在這個例子中,我們使用view()
函數(shù)來渲染welcome.php
視圖文件。view()
函數(shù)會自動查找app/Views
目錄下的視圖文件,并將其內(nèi)容輸出到瀏覽器中。
http://your-domain.com/welcome
(請將your-domain.com
替換為你的實(shí)際域名),你將看到渲染后的視圖頁面。以上就是在CodeIgniter 4框架中使用視圖組件進(jìn)行視圖渲染的基本步驟。你可以根據(jù)需要創(chuàng)建更多的視圖文件和控制器,以便在應(yīng)用程序中使用不同的視圖。