服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - PHP教程 - 解决Laravel 使用insert插入数据,字段created_at为0000的问题

解决Laravel 使用insert插入数据,字段created_at为0000的问题

2021-08-30 17:12lanwithyu PHP教程

今天小编就为大家分享一篇解决Laravel 使用insert插入数据,字段created_at为0000的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

据官方文档的说明,使用Eloquent ORM,插数据库的时候可以自动生成created_at,updated_at,代码如下:

Model里的代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Model;
 
class Notice extends Model
{
  protected $guarded = [];
 
  //获取部门名称
  public function fromDep(){
    return $this->belongsTo('App\Models\Department','from','id');
  }
 
  public function toDep(){
    return $this->belongsTo('App\Models\Department','to','id');
  }
 
  public function toUser(){
    return $this->belongsTo('App\User','create_user','id');
  }
}

新增的代码

?
1
2
3
4
5
6
7
8
9
10
public function store(Request $request)
  {
    $data = $request->only(['title','sort','level','from','content','document']);
    $data['creater'] = Auth::user()->id;
    if(Notice::insert($data)){
      return ResponseLayout::apply(true);
    }else{
      return ResponseLayout::apply(false);
    }
  }

插入一条数据,数据库中created_at和updated_at字段为0000-00-00 00:00:00。

原因分析:原生的插入语句,Laravel是不会自动帮你插入created_at和updated_at字段的。

解决方法

create

?
1
2
3
4
5
6
7
8
9
10
public function store(Request $request)
  {
    $data = $request->only(['title','sort','level','from','content','document']);
    $data['creater'] = Auth::user()->id;
    if(Notice::create($data)){
      return ResponseLayout::apply(true);
    }else{
      return ResponseLayout::apply(false);
    }
  }

save

?
1
2
3
4
5
6
7
8
9
10
11
public function store(Request $request)
  {
    $data = $request->only(['title','sort','level','from','content','document']);
    $data['creater'] = Auth::user()->id;
    $notice = new Notice($data);
    if($notice->save()){
      return ResponseLayout::apply(true);
    }else{
      return ResponseLayout::apply(false);
    }
  }

以上这篇解决Laravel 使用insert插入数据,字段created_at为0000的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/lanwithyu/article/details/74853268

延伸 · 阅读

精彩推荐