Home > Backend Development > PHP Tutorial > laravel Eloquent create方法插入数据,如何知道是否更新成功?

laravel Eloquent create方法插入数据,如何知道是否更新成功?

WBOY
Release: 2016-06-06 20:09:46
Original
2553 people have browsed it

我想使用laravel中的Eloquent中的create方法插入数据。这个方法默认会返回model对象,但是如何得知插入数据是否成功呢?之前的框架都会返回一个bool类型的。

create方法代码如下:

<code>public static function create(array $attributes = [])
    {
        $model = new static($attributes);

        $model->save();

        return $model;
    }</code>
Copy after login
Copy after login

回复内容:

我想使用laravel中的Eloquent中的create方法插入数据。这个方法默认会返回model对象,但是如何得知插入数据是否成功呢?之前的框架都会返回一个bool类型的。

create方法代码如下:

<code>public static function create(array $attributes = [])
    {
        $model = new static($attributes);

        $model->save();

        return $model;
    }</code>
Copy after login
Copy after login

终于找到的了,如果失败的话是返回false的,成功的话是返回一个model对象的。

你可以采用另一个方法save(),具体使用方法见下方

<code>$obj = new Order;
$obj->status = 1;
$obj->price = 100;
$res = $obj->save();//返回true or false
if(!$res){
    //Log::error('failed', ['context' => $arrData]);
    return 0;
}
return $obj -> id;//返回新建记录的ID</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template