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

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

WBOY
WBOYOriginal
2016-06-06 20:09:462548Durchsuche

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

create方法代码如下:

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

        $model->save();

        return $model;
    }</code>

回复内容:

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

create方法代码如下:

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

        $model->save();

        return $model;
    }</code>

终于找到的了,如果失败的话是返回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>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn