Home > Backend Development > PHP Tutorial > yii2 中 批量插入的BEHAVIORS问题

yii2 中 批量插入的BEHAVIORS问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:20:07
Original
1228 people have browsed it

批量插入代码

Yii::$app->db->createCommand()->batchInsert($rangeDetailModel::tableName(),['type','range_id','value'],$branchArr)->execute();

想加入以下行为

public function behaviors()

<code>{
    return [

        [
            'class' => BlameableBehavior::className(),
            'attributes' => [
                ActiveRecord::EVENT_BEFORE_INSERT => ['create_by'],
                ActiveRecord::EVENT_BEFORE_UPDATE  => 'lastupdate_by'
            ]
        ],
        'timestamp' => [
            'class' => 'yii\behaviors\TimestampBehavior',
            'attributes' => [
                ActiveRecord::EVENT_BEFORE_INSERT => ['create_dt', 'lastupdate_dt'],
                ActiveRecord::EVENT_BEFORE_UPDATE => ['lastupdate_dt']
            ]
        ]
    ];
}



这个行为在AR中是默认使用的 但是我用BATCHINSERT就不行 我试过这么写  

然偶没什么软用  
 $beh['yii\behaviors\BlameableBehavior']=[
            ActiveRecord::EVENT_BEFORE_INSERT => ['create_by'],
            ActiveRecord::EVENT_BEFORE_UPDATE  => 'lastupdate_by'
        ];
        Yii::$app->db->createCommand()->batchInsert($rangeDetailModel::tableName(),['type','range_id','value'],$areaArr)->attachBehaviors($beh)->execute();</code>
Copy after login
Copy after login

回复内容:

批量插入代码

Yii::$app->db->createCommand()->batchInsert($rangeDetailModel::tableName(),['type','range_id','value'],$branchArr)->execute();

想加入以下行为

public function behaviors()

<code>{
    return [

        [
            'class' => BlameableBehavior::className(),
            'attributes' => [
                ActiveRecord::EVENT_BEFORE_INSERT => ['create_by'],
                ActiveRecord::EVENT_BEFORE_UPDATE  => 'lastupdate_by'
            ]
        ],
        'timestamp' => [
            'class' => 'yii\behaviors\TimestampBehavior',
            'attributes' => [
                ActiveRecord::EVENT_BEFORE_INSERT => ['create_dt', 'lastupdate_dt'],
                ActiveRecord::EVENT_BEFORE_UPDATE => ['lastupdate_dt']
            ]
        ]
    ];
}



这个行为在AR中是默认使用的 但是我用BATCHINSERT就不行 我试过这么写  

然偶没什么软用  
 $beh['yii\behaviors\BlameableBehavior']=[
            ActiveRecord::EVENT_BEFORE_INSERT => ['create_by'],
            ActiveRecord::EVENT_BEFORE_UPDATE  => 'lastupdate_by'
        ];
        Yii::$app->db->createCommand()->batchInsert($rangeDetailModel::tableName(),['type','range_id','value'],$areaArr)->attachBehaviors($beh)->execute();</code>
Copy after login
Copy after login

createCommand 是 dao ,已经脱离了 ActiveRecord.

看你的ar就是简单的设置时间,还是自己来吧。

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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template