ThinkPHP是一种基于MVC开发模式的PHP框架,用于快速、可扩展和易维护的Web应用程序的开发。 在本文中,我们将学习如何使用ThinkPHP框架的强大功能,在Web应用程序中实现简单的文章编辑功能。
我们将创建一个名为“Article”的模块,这个模块将包含文章的创建、编辑和删除功能。我们将从数据库开始,创建一个新的数据表“articles”,它将存储文章的各种属性,如标题、内容和状态。
首先,我们需要创建一个数据库,名称随意。在该数据库中,我们将创建一个新的表,命名为“articles”。这个表将具有以下列:
id – 这是每篇文章的唯一标识符,它将是一个整数,主键和自动递增。
title – 这是文章的标题,它将是一个字符串,最长50个字符。
body – 这是文章的主体内容,它将是一个大文本。
status – 这是文章的状态,它将是一个布尔值。
created_at – 这是文章创建的日期时间戳,它将是一个整数。
updated_at – 这是文章最近更新的日期时间戳,它将是一个整数。
接下来,在我们的项目中,我们将创建一个名为“Article”的模块,我们可以通过在终端中使用以下命令创建一个新的模块:
php think module Article
这将在我们的项目中创建一个名为“Article”的模块。此模块将包含以下控制器:Index,Create,Edit,Delete和Update。我们将在“Article”的模型中定义Articles表,并在“Article”的Index控制器中实现文章列表。
在我们的模型中,我们需要使用ThinkPHP ORM来定义Articles表。我们可以将以下代码添加到模型文件中,以便定义Articles表:
<?php
namespace app\article\model;
use think\Model;
class Articles extends Model
{
// 数据表名 protected $table = 'articles'; // 主键名 protected $pk = 'id'; // 字段定义 protected $schema = [ 'id' => 'int', 'title' => 'string', 'body' => 'text', 'status' => 'boolean', 'created_at' => 'int', 'updated_at' => 'int', ];
}
接下来,在我们的Index控制器中,我们将使用ORM来获取所有文章,并将它们传递到视图中进行显示。要实现这一点,我们将使用以下代码:
<?php
namespace app\article\controller;
use app\article\model\Articles;
class Index
{
public function index() { // 获取所有文章 $articles = Articles::select(); // 渲染视图 return view('index', [ 'articles' => $articles, ]); }
}
在我们的视图中,我们将显示所有文章的标题和创建日期,并提供一个链接,以便用户编辑和删除文章。视图文件如下:
<!DOCTYPE html>
<html>
<head>
<title>文章列表</title>
</head>
<body>
<h1>文章列表</h1>
<?php foreach ($articles as $article): ?><?php endforeach; ?>
<a href="">创建文章
</body>
</html>
在我们的“Article”的Create控制器中,我们将显示一个表单,以供用户创建新的文章。表单将包含标题和主体字段,以及submit按钮。我们将使用以下代码来实现:
<?php
namespace app\article\controller;
use app\article\model\Articles;
use think\Request;
class Create
{
public function index() { // 渲染视图 return view('create'); } public function create(Request $request) { // 获取表单数据 $title = $request->param('title'); $body = $request->param('body'); // 创建新文章 $article = new Articles(); $article->title = $title; $article->body = $body; $article->status = true; $article->created_at = time(); $article->updated_at = time(); $article->save(); // 跳转到文章列表页面 return redirect('/article/index'); }
}
我们的Create控制器中有两个方法:index和create。index方法将渲染我们的表单视图,create方法将获取表单数据并在数据库中创建新的文章。
我们的表单视图将包含一个<form>标记,其中包含“标题”和“主体”输入字段,以及submit按钮。表单视图如下所示:
<!DOCTYPE html>
<html>
<head>
<title>创建文章</title>
</head>
<body>
<h1>创建文章</h1>
<form action="<?php echo url('article/create/create'); ?>" method="post">
<label for="title">标题</label> <input type="text" name="title" id="title"> <label for="body">主体</label> <textarea name="body" id="body"></textarea> <button type="submit">创建</button>
</form>
</body>
</html>
在我们的“Article”的Edit控制器中,我们将显示与Create视图相似的表单,但是表单将包含当前文章的标题和主体字段。我们将使用以下代码实现:
<?php
namespace app\article\controller;
use app\article\model\Articles;
use think\Request;
class Edit
{
public function index(Request $request) { // 获取文章ID $id = $request->param('id'); // 获取文章 $article = Articles::find($id); // 渲染视图 return view('edit', [ 'article' => $article, ]); } public function update(Request $request) { // 获取表单数据 $id = $request->param('id'); $title = $request->param('title'); $body = $request->param('body'); // 更新文章 $article = Articles::find($id); $article->title = $title; $article->body = $body; $article->updated_at = time(); $article->save(); // 跳转到文章列表页面 return redirect('/article/index'); }
}
我们的Edit控制器中也有两个方法:index和update。index方法将获取当前文章的数据,并渲染我们的表单视图。update方法将获取表单数据并更新文章。
我们的表单视图将包含一个<form>标记,其中包含输入字段,以供用户编辑当前文章的标题和主体。表单视图显示如下:
<!DOCTYPE html>
<html>
<head>
<title>编辑文章</title>
</head>
<body>
<h1>编辑文章</h1>
<form action="<?php echo url('article/edit/update'); ?>" method="post">
<input type="hidden" name="id" value="<?php echo $article->id; ?>"> <label for="title">标题</label> <input type="text" name="title" id="title" value="<?php echo $article->title; ?>"> <label for="body">主体</label> <textarea name="body" id="body"><?php echo $article->body; ?></textarea> <button type="submit">更新</button>
</form>
</body>
</html>
在我们的“Article”的Delete控制器中,我们将删除当前文章。我们将使用以下代码实现:
<?php
namespace app\article\controller;
use app\article\model\Articles;
use think\Request;
class Delete
{
public function index(Request $request) { // 获取文章ID $id = $request->param('id'); // 删除文章 Articles::destroy($id); // 跳转到文章列表页面 return redirect('/article/index'); }
}
我们的Delete控制器中只有一个方法:index。这个方法将获取当前文章的ID,并从数据库中删除它。然后,它将重定向到文章列表页面。
现在我们已经完成了我们的“Article”模块。我们可以在我们的应用程序中使用以下URL访问它:
/article/index – 文章列表
/article/create – 创建文章
/article/edit/id – 编辑文章
/article/delete/id – 删除文章
我们已经成功地使用ThinkPHP框架创建了一个简单的文章编辑应用程序。现在,我们可以使用这些知识来创建更复杂的Web应用程序。