1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Laravel 5 基础(七)- Eloquent (laravel 的ORM)

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

时间:2022-08-01 00:28:41

相关推荐

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

后端开发|php教程

quot,gt,Article,,title

后端开发-php教程

我们来生成第一个模型

惠多网源码怎么样,vscode 设置不显示,ubuntu关闭acpi,使用外网访问tomcat,镇江爬虫,php 一年的时间戳,seo学多久 知乎,用制作一个网站源码,.net有数据库的网站模板lzw

php artisan make:model Article#输出Model created successfully.Created Migration: _03_28_062517_create_articles_table

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

淘宝刷信用源码,ubuntu软件站,tomcat对ip进行限制,爬虫搜热点,php数据展示模板,seo外推seo研究协会lzw

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

没什么特别的,除了继承自 Model 以外,但是具有强大的功能,这些都封装在laravel的Model中。模型自动具有了save() update() findXXX()等强大的功能。

网站信息采集源码,vscode怎么一键修复代码,ubuntu 火狐没了,tomcat没有安装成功,快手评论 爬虫,php判断跳转页面,眉山seo网络推广有效果吗lzw

tinker 是 laravel提供的命令行工具,可以和项目进行交互。

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: "-03-28 06:37:22", timezone_type: 3, timezone: "UTC" }>>> $article;=> { title: "My First Article", body: "Some content...", published_at: { date: "-03-28 06:37:22", timezone_type: 3, timezone: "UTC" } }>>> $article->toArray();=> [ "title" => "My First Article", "body" => "Some content...", "published_at" => { date: "-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" => "-03-28 06:37:22", "created_at" => "-03-28 06:38:53", "updated_at" => "-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" => "-03-28 06:37:22", "created_at" => "-03-28 06:38:53", "updated_at" => "-03-28 06:42:03" ] ] >>> $article = App\Article::find(1);=> { id: "1", title: "My First Update Title", body: "Some content...", published_at: "-03-28 06:37:22", created_at: "-03-28 06:38:53", updated_at: "-03-28 06:42:03" }>>> $article = App\Article::where(ody, Some content...)->get();=> [ { id: "1", title: "My First Update Title", body: "Some content...", published_at: "-03-28 06:37:22", created_at: "-03-28 06:38:53", updated_at: "-03-28 06:42:03" } ]>>> $article = App\Article::where(ody, Some content...)->first();=> { id: "1", title: "My First Update Title", body: "Some content...", published_at: "-03-28 06:37:22", created_at: "-03-28 06:38:53", updated_at: "-03-28 06:42:03" }>>> >>> $article = App\Article::create([ itle => New Article, ody => New body, published_at => Carbon\Carbon::now()]);Illuminate\Database\Eloquent\MassAssignmentException with message itle

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

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

<?php namespace App;use Illuminate\Database\Eloquent\Model;class Article extends Model {protected $fillable = [ itle, ody, published_at ];}

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

退出 tinker,重新进入

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

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

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。