二刷Laravel 教程(用户模型)总结Ⅲ

一、数据库迁移

当我们运行迁移时,up 方法会被调用;(创建表)
当我们回滚迁移时,down 方法会被调用。(删除表)

public function up ()

{

//create 方法会接收两个参数:一个是数据表的名称,另一个则是接收 $table(Blueprint 实例)的闭包。

Schema::create ('users', function (Blueprint $table) {

$table->id();

$table->string('name');

$table->string('email')->unique();

$table->timestamp('email_verified_at')->nullable();

$table->string('password');

$table->rememberToken();

$table->timestamps();

});

}
public function down ()

{

Schema::dropIfExists('users');

}

补:

清理缓存重启服务

在命令行中进入程序根目录,执行下列语句。

php artisan cache:clear

php artisan config:clear

php artisan migrate

二、查看数据库表

三、模型文件

1)用户模型中定义的三个属性

$casts(指定数据库字段使用的数据类型)

fillable(过滤用户提交的字段,只有包含在该属性中的字段才能够被正常更新。避免『批量赋值』的错误) hidden(用户密码或其它敏感信息在用户实例通过数组或 JSON 显示时进行隐藏)

2)创建文章模型(Article)为例

>>>只创建模型(模型类名称使用 单数 形式来命名)

php artisan make:model Article
//删除模型

rm app/Models/Article.php

>>>创建模型的同时创建数据迁移

php artisan make:model Article -m

3)Eloquent表命名约定

「下划线命名法」与「复数形式名称」来作为数据表的名称生成规则

Article 数据模型类对应 articles 表;
User 数据模型类对应 users 表;
BlogPost 数据模型类对应 blog_posts 表;

四、创建用户对象

进入Tinker环境:

php artisan tinker

在Tinker里面创建一个用户对象:

//调用了一个叫bcrypt 的方法,将 password 的值进行加密

App\Models\User::create(['name'=> 'Summer', 'email'=>'summer@example.com','password'=>bcrypt('password')])

五、查找用户对象

使用 use 来引用 App\Models\User Eloquent 模型类

use App\Models\User

六、更新用户对象(两种方法)

第一种是通过给用户对象属性进行赋值,赋值成功后再调用 save 方法进行保存更新;

1.$user = User::first()

2.$user->name = 'Monkey'

3.$user->save() //保存,不保存显示的还是未修改之前的

4.User::first()

第二种则是直接调用 update 方法进行更新。(这个嘎嘎好,比第一个)

1.$user->update(['name'=>'Summer'])

2.User::first()

相关推荐
YUJIANYUE3 小时前
PHP将指定文件夹下多csv文件[即多表]导入到sqlite单文件
jvm·sqlite·php
七星静香3 小时前
laravel chunkById 分块查询 使用时的问题
java·前端·laravel
龙哥·三年风水12 小时前
群控系统服务端开发模式-应用开发-个人资料
分布式·php·群控系统
Dingww101116 小时前
梧桐数据库中的网络地址类型使用介绍分享
数据库·oracle·php
Genius Kim19 小时前
SpringCloud Sentinel 服务治理详解
spring cloud·sentinel·php
原机小子1 天前
城镇保障性住房管理:SpringBoot系统解决方案
数据库·spring boot·php
kali-Myon1 天前
NewStarCTF2024-Week5-Web&Misc-WP
前端·python·学习·mysql·web安全·php·web
DK七七1 天前
当今陪玩系统小程序趋势,陪玩系统源码搭建后的适用于哪些平台
小程序·php·uniapp
tekin1 天前
vscode php Launch built-in server and debug, PHP内置服务xdebug调试,自定义启动参数配置使用示例
ide·vscode·php·launch.json·runtimeargs·php内置服务自定义参数
The_Ticker2 天前
PHP查询实时股票行情
开发语言·php·学习方法