• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Laravel 5 基础(七)- Eloquent (laravel 的ORM)

php 搞代码 3年前 (2022-01-23) 22次浏览 已收录 0个评论
  • 我们来生成第一个模型
<code>php artisan make:model Article#输出Model created successfully.Created Migration: 2015_03_28_062517_create_articles_table</code>

查看一下生成的文件 app/Article.php

<code><?php namespace App;use Illuminate\Database\Eloquent\Model;class Article extends Model {	//}</code>

没什么特别的,除了继承自 Model 以外,但是具来2源gaodaima#com搞(代@码&网有强大的功能,这些都封装在laravel的Model中。模型自动具有了 save() update() findXXX() 等强大的功能。

  • tinker 是 laravel提供的命令行工具,可以和项目进行交互。
<code>php artisan tinker#以下是在tinker中的交互输入Psy Shell v0.4.1 (PHP 5.4.16 — cli) by Justin Hileman>>> $name = 'zhang jinglin';=> "zhang jinglin">>> $name=> "zhang jinglin">>> $article = new App\Article;=>  {}>>> $article->title = 'My First Article';=> "My First Article">>> $article->body = 'Some content...';=> "Some content...">>> $article->published_at = Carbon\Carbon::now();=>  {       date: "2015-03-28 06:37:22",       timezone_type: 3,       timezone: "UTC"   }>>> $article;=>  {       title: "My First Article",       body: "Some content...",       published_at:  {           date: "2015-03-28 06:37:22",           timezone_type: 3,           timezone: "UTC"       }   }>>> $article->toArray();=> [       "title"        => "My First Article",       "body"         => "Some content...",       "published_at" =>  {           date: "2015-03-28 06:37:22",           timezone_type: 3,           timezone: "UTC"       }   ]>>> $article->save();=> true#查看数据结果,添加了一条记录>>> App\Article::all()->toArray();=> [       [           "id"           => "1",           "title"        => "My First Article",           "body"         => "Some content...",           "published_at" => "2015-03-28 06:37:22",           "created_at"   => "2015-03-28 06:38:53",           "updated_at"   => "2015-03-28 06:38:53"       ]   ]>>> $article->title = 'My First Update Title';=> "My First Update Title">>> $article->save();=> true>>> App\Article::all()->toArray();=> [       [           "id"           => "1",           "title"        => "My First Update Title",           "body"         => "Some content...",           "published_at" => "2015-03-28 06:37:22",           "created_at"   => "2015-03-28 06:38:53",           "updated_at"   => "2015-03-28 06:42:03"       ]   ]   >>> $article = App\Article::find(1);=>  {       id: "1",       title: "My First Update Title",       body: "Some content...",       published_at: "2015-03-28 06:37:22",       created_at: "2015-03-28 06:38:53",       updated_at: "2015-03-28 06:42:03"   }>>> $article = App\Article::where('body', 'Some content...')->get();=>  [        {           id: "1",           title: "My First Update Title",           body: "Some content...",           published_at: "2015-03-28 06:37:22",           created_at: "2015-03-28 06:38:53",           updated_at: "2015-03-28 06:42:03"       }   ]>>> $article = App\Article::where('body', 'Some content...')->first();=>  {       id: "1",       title: "My First Update Title",       body: "Some content...",       published_at: "2015-03-28 06:37:22",       created_at: "2015-03-28 06:38:53",       updated_at: "2015-03-28 06:42:03"   }>>> >>> $article = App\Article::create(['title' => 'New Article', 'body' => 'New body', 'published_at' => Carbon\Carbon::now()]);Illuminate\Database\Eloquent\MassAssignmentException with message 'title'</code>

MassAssignmentException,laravel保护我们不能直接插入记录。比如,在一些特殊情况下我们需要直接利用表单的信息填充数据库记录,但是如果我们并没有在表单中添加密码字段,而黑客产生了密码字段连同我们的其他字段一起送回服务器,这将产生修改密码的危险,所以我们必须明确的告诉laravel我们的模型那些字段是可以直接填充的。

修改我们的模型文件 Article.php

<code><?php namespace App;use Illuminate\Database\Eloquent\Model;class Article extends Model {	protected $fillable = [        'title',        'body',        'published_at'    ];}</code>

表示,title, body, published_at 是可以直接填充的。

退出 tinker,重新进入

<code>>>> $article = App\Article::create(['title' => 'New Article', 'body' => 'New body', 'published_at' => Carbon\Carbon::now()]);=>  {       title: "New Article",       body: "New body",       published_at:  {           date: "2015-03-28 06:55:19",           timezone_type: 3,           timezone: "UTC"       },       updated_at: "2015-03-28 06:55:19",       created_at: "2015-03-28 06:55:19",       id: 2   }   # It's ok>>> App\Article::all()->toArray();=> [       [           "id"           => "1",           "title"        => "My First Update Title",           "body"         => "Some content...",           "published_at" => "2015-03-28 06:37:22",           "created_at"   => "2015-03-28 06:38:53",           "updated_at"   => "2015-03-28 06:42:03"       ],       [           "id"           => "2",           "title"        => "New Article",           "body"         => "New body",           "published_at" => "2015-03-28 06:55:19",           "created_at"   => "2015-03-28 06:55:19",           "updated_at"   => "2015-03-28 06:55:19"       ]   ]>>> $article = App\Article::find(2);=>  {       id: "2",       title: "New Article",       body: "New body",       published_at: "2015-03-28 06:55:19",       created_at: "2015-03-28 06:55:19",       updated_at: "2015-03-28 06:55:19"   }>>> $article->update(['body' => 'New Updaet Body']);=> true#update自动调用save()</code>

以上就介绍了Laravel 5 基础(七)- Eloquent (laravel 的ORM),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Laravel 5 基础(七)- Eloquent (laravel 的ORM)
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址