使用工厂播种数据库时,在 Laravel 中使用 PHP Faker 生成 "unique with" 条目
Using PHP Faker in Laravel to generate "unique with" entry when seeding a database using a factory
所以类似于 unique with 验证规则(参见:https://github.com/felixkiss/uniquewith-validator),我想知道如何生成一个条目,其中一列与另一列是唯一的。我想按如下方式播种我的数据库。
示例:
"steps"table中有 12 个步骤。每个步骤应该有 5 个类别,每个类别存储在 "step_categories" table 中。这些类别中的每一个都分配了一个唯一的订单号 1 到 5,每个 "step_id".
都是唯一的
请在此处查看此图片,了解数据库的外观示例:https://imgur.com/a/XYA5yyn
我必须手动为上面的图像示例在数据库中创建条目。我不想每次都手动生成这个,比如说我犯了一个错误并且必须回滚迁移。
我正在使用工厂生成此数据。所以工厂名称是 StepCategoriesFactory.php
并且显然我正在使用 DatabaseSeeder.php
文件中的 create()
方法调用工厂。
我考虑过在 for 循环中执行此操作,然后我意识到当我调用 'step_id' => App\Model::all()->random()->id
获取新 ID 时,我无法确保我没有获取我刚刚为其生成 5 个条目的 ID。我是 Laravel 的新手,我什至不确定从哪里开始。没有关于伪造者可以在另一列中使用唯一性的 SO 的真实信息。我该怎么做?
注意: 步骤 ID 并不总是 1-12。步骤 ID 可能会有所不同,具体取决于步骤是否被删除和重新制作。因此,仅将 step_id
分配为等于 1-12 是行不通的。
更新: 这是我刚写的一些代码,我认为我在正确的轨道上。可能是。我通过 number
字段获取了 step_id
,因为它始终为 1-12,并且我从条目中获取了 IID。但是现在我一直在研究如何在不重复的情况下生成订单 1-5。我还没有运行这个,因为它不完整,我知道它会在没有正确订单号的情况下抛出错误。
更新 2: 我认为我的方向是正确的。但是我收到一个未定义的变量错误。当我将第一行放在匿名函数中时,它会将每个条目的顺序重置为“1”。如何使 $autoIncrement 变量可用于匿名函数?播种器在更新之间保持不变。
错误图片:https://imgur.com/a/ywkd0Lb
终端中出现 Die/Dump 错误的第二张图片:https://imgur.com/a/rOGRv32
在此参考这篇文章:https://laracasts.com/discuss/channels/laravel/model-factory-increment-value-faker?page=1
更新 3: 我忘记了匿名函数的 use ($autoIncrement)
代码行。下面的代码已更新,但现在我收到一个不同的错误,指出订单列具有空值且无法插入。显然它应该是'1'。即使在我调用我的 $autoIncrement->next();
应该将其递增到“1”之后,它仍然根据终端返回 null。但是,当我在 $autoIncrement->current()
上执行 diedump 时,它返回 1。很奇怪。
更新 3 错误:https://imgur.com/a/STOmIjF
StepCategoriesFactory.php
use Faker\Generator as Faker;
$autoIncrement = autoIncrement();
$factory->define(App\StepCategory::class, function (Faker $faker) use ($autoIncrement) {
// Generate Created At and Updated at DATETIME
$DateTime = $faker->dateTime($max = 'now');
$autoIncrement->next();
$order = (int) $autoIncrement->current();
return [
// Generate Dummy Data
'order' => $order,
'name' => $faker->words(4, true),
'created_at' => $DateTime,
'updated_at' => $DateTime,
];
});
function autoIncrement()
{
for ($i = 0; $i < 5; $i++) {
yield $i;
}
}
编辑:悬赏这个问题,因为我认为这有助于社区获得详细的答案。我正在寻求帮助来解释如何确保我在每个循环中获取相同的条目。
例如,如果您的 Step 模型名称是 Steps:
$allSteps = Steps::all();
foreach($allSteps as $step){
for($i=1;$i<6;$i++){
//insert to table $step->id , $i for example
DB::table('yourTableName')->insert([
'name'=>'Step '.$step->id.'- Category '.$i ,
'order'=>$i ,
'step_id'=>$step->id
]);
}
}
抱歉,如果你不明白我的意思,我会尝试用代码来解释它
use Illuminate\Database\Seeder;
$factory->define(App\StepCategory::class, function (Faker $faker) {
// Generate Created At and Updated at DATETIME
$DateTime = $faker->dateTime($max = 'now');
$step_id = function () {
return factory('App\Step')->create()->id;
};
return [
// Generate Dummy Data
'step_id' => $step_id,
'order' => uniqueOrder($step_id),
'name' => $faker->words(4, true),
'created_at' => $DateTime,
'updated_at' => $DateTime,
];
});
function uniqueOrder($step_id)
{
$unique = rand(1,5);
do {
$unique = rand(1,5);
}
while(StepCategory::where('step_id', $step_id)->andWhere( 'order', $unique)->exists())
return $unique;
}
终于解决了!
所以我听取了大家的回答,苦思冥想使用for循环来创建订单号。 1-5。我最后 运行 遇到的问题是 $i 变量没有重置。所以在 yield 之后,我必须检查 $i 变量是否等于 5,然后将其重置为零。
这是代码!
StepCategories.php
use Faker\Generator as Faker;
$autoIncrement = autoIncrement();
$factory->define(App\StepCategory::class, function (Faker $faker) use ($autoIncrement) {
// Generate Created At and Updated at DATETIME
$DateTime = $faker->dateTime($max = 'now');
// Get the next iteration of the autoIncrement Function
$autoIncrement->next();
// Assign the current $i value to a typecast variable.
$order = (int) $autoIncrement->current();
return [
// Generate Dummy Data
'order' => $order,
'name' => $faker->words(4, true),
'created_at' => $DateTime,
'updated_at' => $DateTime,
];
});
function autoIncrement()
{
// Start a loop
for ($i = 0; $i <= 5; $i++) {
// Yield the current value of $i
yield $i;
// If $i is equal to 5, that must mean the start of a new loop
if($i == 5) {
// Reset $i to 0 to start over.
$i = 0;
}
}
}
DatabaseSeeder.php
// Generate Dummy Categories
// Run the factory 12 times
foreach(range(1, 12) as $i) {
// Generate 5 entries each time
factory(App\StepCategory::class, 5)->create([
// Since all steps have a number 1-12 grab the step by the number column and get it's ID
'step_id' => App\Step::where('number', '=', $i)->first()->id,
]);
}
感谢所有帮助过的人!
所以类似于 unique with 验证规则(参见:https://github.com/felixkiss/uniquewith-validator),我想知道如何生成一个条目,其中一列与另一列是唯一的。我想按如下方式播种我的数据库。
示例:
"steps"table中有 12 个步骤。每个步骤应该有 5 个类别,每个类别存储在 "step_categories" table 中。这些类别中的每一个都分配了一个唯一的订单号 1 到 5,每个 "step_id".
都是唯一的请在此处查看此图片,了解数据库的外观示例:https://imgur.com/a/XYA5yyn
我必须手动为上面的图像示例在数据库中创建条目。我不想每次都手动生成这个,比如说我犯了一个错误并且必须回滚迁移。
我正在使用工厂生成此数据。所以工厂名称是 StepCategoriesFactory.php
并且显然我正在使用 DatabaseSeeder.php
文件中的 create()
方法调用工厂。
我考虑过在 for 循环中执行此操作,然后我意识到当我调用 'step_id' => App\Model::all()->random()->id
获取新 ID 时,我无法确保我没有获取我刚刚为其生成 5 个条目的 ID。我是 Laravel 的新手,我什至不确定从哪里开始。没有关于伪造者可以在另一列中使用唯一性的 SO 的真实信息。我该怎么做?
注意: 步骤 ID 并不总是 1-12。步骤 ID 可能会有所不同,具体取决于步骤是否被删除和重新制作。因此,仅将 step_id
分配为等于 1-12 是行不通的。
更新: 这是我刚写的一些代码,我认为我在正确的轨道上。可能是。我通过 number
字段获取了 step_id
,因为它始终为 1-12,并且我从条目中获取了 IID。但是现在我一直在研究如何在不重复的情况下生成订单 1-5。我还没有运行这个,因为它不完整,我知道它会在没有正确订单号的情况下抛出错误。
更新 2: 我认为我的方向是正确的。但是我收到一个未定义的变量错误。当我将第一行放在匿名函数中时,它会将每个条目的顺序重置为“1”。如何使 $autoIncrement 变量可用于匿名函数?播种器在更新之间保持不变。
错误图片:https://imgur.com/a/ywkd0Lb 终端中出现 Die/Dump 错误的第二张图片:https://imgur.com/a/rOGRv32
在此参考这篇文章:https://laracasts.com/discuss/channels/laravel/model-factory-increment-value-faker?page=1
更新 3: 我忘记了匿名函数的 use ($autoIncrement)
代码行。下面的代码已更新,但现在我收到一个不同的错误,指出订单列具有空值且无法插入。显然它应该是'1'。即使在我调用我的 $autoIncrement->next();
应该将其递增到“1”之后,它仍然根据终端返回 null。但是,当我在 $autoIncrement->current()
上执行 diedump 时,它返回 1。很奇怪。
更新 3 错误:https://imgur.com/a/STOmIjF
StepCategoriesFactory.php
use Faker\Generator as Faker;
$autoIncrement = autoIncrement();
$factory->define(App\StepCategory::class, function (Faker $faker) use ($autoIncrement) {
// Generate Created At and Updated at DATETIME
$DateTime = $faker->dateTime($max = 'now');
$autoIncrement->next();
$order = (int) $autoIncrement->current();
return [
// Generate Dummy Data
'order' => $order,
'name' => $faker->words(4, true),
'created_at' => $DateTime,
'updated_at' => $DateTime,
];
});
function autoIncrement()
{
for ($i = 0; $i < 5; $i++) {
yield $i;
}
}
编辑:悬赏这个问题,因为我认为这有助于社区获得详细的答案。我正在寻求帮助来解释如何确保我在每个循环中获取相同的条目。
例如,如果您的 Step 模型名称是 Steps:
$allSteps = Steps::all();
foreach($allSteps as $step){
for($i=1;$i<6;$i++){
//insert to table $step->id , $i for example
DB::table('yourTableName')->insert([
'name'=>'Step '.$step->id.'- Category '.$i ,
'order'=>$i ,
'step_id'=>$step->id
]);
}
}
抱歉,如果你不明白我的意思,我会尝试用代码来解释它
use Illuminate\Database\Seeder;
$factory->define(App\StepCategory::class, function (Faker $faker) {
// Generate Created At and Updated at DATETIME
$DateTime = $faker->dateTime($max = 'now');
$step_id = function () {
return factory('App\Step')->create()->id;
};
return [
// Generate Dummy Data
'step_id' => $step_id,
'order' => uniqueOrder($step_id),
'name' => $faker->words(4, true),
'created_at' => $DateTime,
'updated_at' => $DateTime,
];
});
function uniqueOrder($step_id)
{
$unique = rand(1,5);
do {
$unique = rand(1,5);
}
while(StepCategory::where('step_id', $step_id)->andWhere( 'order', $unique)->exists())
return $unique;
}
终于解决了!
所以我听取了大家的回答,苦思冥想使用for循环来创建订单号。 1-5。我最后 运行 遇到的问题是 $i 变量没有重置。所以在 yield 之后,我必须检查 $i 变量是否等于 5,然后将其重置为零。
这是代码!
StepCategories.php
use Faker\Generator as Faker;
$autoIncrement = autoIncrement();
$factory->define(App\StepCategory::class, function (Faker $faker) use ($autoIncrement) {
// Generate Created At and Updated at DATETIME
$DateTime = $faker->dateTime($max = 'now');
// Get the next iteration of the autoIncrement Function
$autoIncrement->next();
// Assign the current $i value to a typecast variable.
$order = (int) $autoIncrement->current();
return [
// Generate Dummy Data
'order' => $order,
'name' => $faker->words(4, true),
'created_at' => $DateTime,
'updated_at' => $DateTime,
];
});
function autoIncrement()
{
// Start a loop
for ($i = 0; $i <= 5; $i++) {
// Yield the current value of $i
yield $i;
// If $i is equal to 5, that must mean the start of a new loop
if($i == 5) {
// Reset $i to 0 to start over.
$i = 0;
}
}
}
DatabaseSeeder.php
// Generate Dummy Categories
// Run the factory 12 times
foreach(range(1, 12) as $i) {
// Generate 5 entries each time
factory(App\StepCategory::class, 5)->create([
// Since all steps have a number 1-12 grab the step by the number column and get it's ID
'step_id' => App\Step::where('number', '=', $i)->first()->id,
]);
}
感谢所有帮助过的人!