CakePHP 使用数据库

cakephp 使用数据库

 

在 cakephp 中使用数据库非常简单。我们将在本章中了解 crud(创建、读取、更新、删除)操作。

此外,我们还需要在 config/app_local.php 文件中配置我们的数据库。

'datasources' => [
   'default' => [
      'host' => 'localhost',
      'username' => 'my_app',
      'password' => 'secret',
      'database' => 'my_app',
      'url' => env('database_url', null),
   ],
   /*
      * the test connection is used during the test suite.
   */
   'test' => [
      'host' => 'localhost',
      //'port' => 'non_standard_port_number',
      'username' => 'my_app',
      'password' => 'secret',
      'database' => 'test_myapp',
      //'schema' => 'myapp',
   ],
],

默认连接具有以下详细信息:

'host' => 'localhost',
   'username' => 'my_app',
   'password' => 'secret',
   'database' => 'my_app',

您可以根据自己的选择更改详细信息,即主机、用户名、密码和数据库。

一旦完成,请确保它在数据源对象的 config/app_local.php 中更新。

现在,我们将继续上述细节,转到您的 phpmyadmin 或 mysql 数据库并创建用户 my_app,如下所示:

我的应用

授予必要的权限并保存。现在,我们根据 app_local.php 中提到的配置获得了数据库详细信息。当你查看 cakephp 主页时,这个是你应该得到的:

应用本地

现在,我们将在数据库中创建以下用户表。

create table `users` ( 
   `id` int(11) not null auto_increment,
   `username` varchar(50) not null, 
   `password` varchar(255) not null, primary key (`id`) 
) engine=innodb auto_increment=7 default charset=latin1

 

插入记录

要在数据库中插入一条记录,我们首先需要使用 tableregistry 类来获取一个表。我们可以使用 get() 方法从注册表中获取实例。 get() 方法将数据库表的名称作为参数。

这个新实例用于创建新实体。使用新实体的实例设置必要的值。我们现在必须使用 tableregistry 类的实例调用 save() 方法,这将在数据库中插入新记录。

 

示例

config/routes.php 文件中进行更改,如以下程序所示。

config/routes.php

use cake\http\middleware\csrfprotectionmiddleware;
use cake\routing\route\dashedroute;
use cake\routing\routebuilder;
$routes--->setrouteclass(dashedroute::class);
$routes->scope('/', function (routebuilder $builder) {
   $builder->registermiddleware('csrf', new csrfprotectionmiddleware([
      'httponly' => true,
   ]));
   $builder->applymiddleware('csrf');
   //$builder->connect('/pages',['controller'=>'pages','action'=>'display', 'home']);
   $builder->connect('/users/add', ['controller' => 'users', 'action' => 'add']);
   $builder->fallbacks();
});

src/controller/userscontroller.php 中创建一个 userscontroller.php 文件。 将以下代码复制到控制器文件中。

src/controller/userscontroller.php

namespace app\controller;
use app\controller\appcontroller;
use cake\orm\tableregistry;
use cake\datasource\connectionmanager;
use cake\auth\defaultpasswordhasher;
class userscontroller extends appcontroller{
   public function add(){
      if($this--->request->is('post')){
         $username = $this->request->getdata('username');
         $hashpswdobj = new defaultpasswordhasher;
         $password = $hashpswdobj->hash($this->request->getdata('password'));
         $users_table = tableregistry::get('users');
         $users = $users_table->newentity($this->request->getdata());
         $users->username = $username;
         $users->password = $password;
         $this->set('users', $users);
         if($users_table->save($users))
         echo "user is added.";
      }
   }
}
?>

src/template 创建一个 users 目录,然后在该目录下创建一个名为add.php 的 view 文件。将以下代码复制到该文件中。

src/template/users/add.php

   echo $this--->form->create(null,array('url'=>'/users/add'));
   echo $this->form->control('username');
   echo $this->form->control('password');
   echo $this->form->button('submit');
   echo $this->form->end();
?>

通过访问以下 url 执行上述示例。 http://localhost/cakephp4/users/add

 

输出

执行后,您将收到以下输出。

数据将保存在用户表中,如下所示:

下一节:cakephp 查看记录

cakephp 教程

相关文章