我是Yii框架的新手.
我想为我的数据库播种,就像可以使用Faker在Laravel框架中完成一样.
我试过这个 http://www.yiiframework.com/forum/index.php/topic/59655-how-to-seed-yii2-database/,但它没有提供太多细节.
如果有人可以帮我解决细节上的步骤,我将非常感激.
我想为我的数据库播种,就像可以使用Faker在Laravel框架中完成一样.
我试过这个 http://www.yiiframework.com/forum/index.php/topic/59655-how-to-seed-yii2-database/,但它没有提供太多细节.
如果有人可以帮我解决细节上的步骤,我将非常感激.
在控制台命令控制器中创建控制台命令并使用Faker为我工作的数据库播种.
以下是我在命令文件夹下创建的SeedController.PHP文件:
原文链接:https://www.f2er.com/php/134514.html以下是我在命令文件夹下创建的SeedController.PHP文件:
// commands/SeedController.PHP namespace app\commands; use yii\console\Controller; use app\models\Users; use app\models\Profile; class SeedController extends Controller { public function actionIndex() { $faker = \Faker\Factory::create(); $user = new Users(); $profile = new Profile(); for ( $i = 1; $i <= 20; $i++ ) { $user->setIsNewRecord(true); $user->user_id = null; $user->username = $faker->username; $user->password = '123456'; if ( $user->save() ) { $profile->setIsNewRecord(true); $profile->user_id = null; $profile->user_id = $user->user_id; $profile->email = $faker->email; $profile->first_name = $faker->firstName; $profile->last_name = $faker->lastName; $profile->save(); } } } }
并使用yii seed命令来运行控制器.