ActiveRecord batch insert (yii2)(ActiveRecord 批量插入 (yii2))
问题描述
是否可以使用 Yii 的 ActiveRecord 在一个查询中插入多行?或者这只能通过较低级别的 DAO 对象实现?
Is it possible to insert multiple rows in one query with Yii's ActiveRecord? Or is this only possible via the lower-level DAO objects?
我有两个模型1- 交易2-TransactionItems
I have two models 1- Transaction 2-TransactionItems
事务项中有多行(点击添加行).
There are multiple rows(onclick add row) in transaction Items.
我想在数据库中存储多行事务项.
I want to store multiple rows of transactionitems in the database.
交易项目表截图
推荐答案
你可以使用yiidbCommand的batchInsert()方法.查看详情这里.与 ActiveRecord 一起使用时,请确保在插入前验证所有数据.
You can use batchInsert() method of yiidbCommand. See details here.
When using it with ActiveRecord make sure validate all data before inserting.
假设您有一组带有 Post 类的 $models,可以这样做:
Assuming you have array of $models with class Post, it can be done like this:
$rows = [];
foreach ($models as $model) {
if (!$model->validate()) {
// At least one model has invalid data
break;
}
$rows[] = $model->attributes;
}
如果模型不需要验证,您可以使用 ArrayHelper 缩短上面的代码以构建 $rows 数组.
If models don't require validation you can short the code above using ArrayHelper for building $rows array.
use yiihelpersArrayHelper;
$rows = ArrayHelper::getColumn($models, 'attributes');
然后简单地执行批量插入:
Then simply execute batch insert:
$postModel = new Post;
Yii::$app->db->createCommand()->batchInsert(Post::tableName(), $postModel->attributes(), $rows)->execute();
附言$postModel 仅用于提取属性名称列表,您也可以从 $models 数组中的任何现有 $model 中提取它.
P.S. The $postModel just used for pulling attirubute names list, you can also pull this from any existing $model in your $models array.
如果不需要插入所有属性,可以在填充$rows数组时指定:
If you don't need to insert all attributes you can specify it when filling $rows array:
$rows[] = [
'title' => $model->title,
'content' => $model->content,
];
不要忘记将 $postModel->attributes 替换为 ['title', 'content'].
Don't forget to replace $postModel->attributes to ['title', 'content'].
如果属性较多,您可以使用一些数组函数来指定要插入的确切属性.
In case of larger amount of attributes you can use some array functions to specify exact attributes for inserting.
这篇关于ActiveRecord 批量插入 (yii2)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ActiveRecord 批量插入 (yii2)
基础教程推荐
- php中的PDF导出 2022-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- php中的foreach复选框POST 2021-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
