PHP-Framework Laravel Eloquent ORM-Batch-Einfügungsdaten, Erstellungszeit 00000000000
大家讲道理
大家讲道理 2017-05-16 16:55:45
0
3
774
foreach ($products as $v=>$a)
{
    $count[] = array('product_name' => $a['name'], 'product_weight' => $a['weight'], 'product_id' => $a['pid'], 'product_price' => $a['price'], 'order_id' => $order->id, 'card_phone' => $user->phone);
}
CountOrder::insert($count);

Bei Verwendung von Laravel zum stapelweisen Einfügen von Daten

Die Erstellungszeit der eingefügten Daten beträgt alle 0000000;

Wie speichert man die Erstellungszeit- und Aktualisierungszeitfelder normalerweise? Müssen sie auch in das Array geschrieben werden?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

Antworte allen(3)
黄舟
把updated_at字段属性改成下面这样,
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
当然`created_at`是要自己赋值的,不然就会插入默认值0000-00-00 00:00:00
小葫芦

其实可以使用save()

$this->fill($count)->save();

我的laravel教程专栏:/u/biaoyansu/blogs

大家讲道理

laravel 默認維護created_at updated_at 需要在模型中聲明 public $timestamps = false; 默認是true

class Student extends Model
{
    protected $table = 'student';//指定表名
    //protected $primaryKey = 'id';//id
    //自动维护时间戳 默认是true;
    //public $timestamps = false;

    protected function getDateFormat()
    {
        return time();//return当前时间戳
        //输出的时候已经帮我们格式化了不想格式化需加函数asDateTime()
    }

   /* protected function asDateTime($val)
    {
        return $val;//将$val  return回去 不做任何处理就不会格式化了
    }*/
}
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage