所以与使用验证规则的唯一一样(参见:https://github.com/felixkiss/uniquewith-validator),我想知道如何生成一个条目,其中一列与另一列是唯一的。我想按如下方式为我的数据库播种。
示例:
"步骤&#34>中有12个步骤。表。每个步骤应该有5个与每个步骤相关联的类别,这些类别存储在" step_categories"表。每个类别都分配了一个唯一的订单号1到5,每个订单号对于每个" step_id"都是唯一的。
请在此处查看此图片,以获取数据库应如何显示的示例:https://imgur.com/a/XYA5yyn
我必须手动在数据库中为上面的图像示例创建条目。我不想每次都要手动生成这个,比如说我犯了一个错误并且必须回滚迁移,例如。
我正在使用工厂生成此数据。因此,工厂名称为StepCategoriesFactory.php
,显然我使用create()
文件中的DatabaseSeeder.php
方法调用工厂。
我想在for循环中这样做,然后我意识到当我打电话给'step_id' => App\Model::all()->random()->id
以获取新ID时,我无法确保我没有&#39 ; t抓住我刚生成5个条目的id。我对Laravel来说真的很新,而且我不确定从哪里开始。没有关于SO的真实信息,faker可以在另一列中使用unique。我该怎么做?
注意:步骤ID并不总是1-12。步骤ID可能会有所不同,具体取决于步骤是否被删除并重新制作。所以只需将step_id
指定为1-12即可。
更新:以下是我刚才写的一些代码,我想我已走上正轨。也许。我已经抓住了step_id
number
字段,因为它始终是1-12,我已经从条目中抓取了IID。但现在我仍然坚持如何在不重复的情况下生成1-5的订单。我仍然没有运行它,因为它不完整,我知道它会在没有正确的订单号的情况下抛出错误。
更新2:我想我在这里正确走上正轨。但是,我得到一个未定义的变量错误。当我从匿名函数中放入第一行时,它将订单重置为" 1"对于每个条目。如何使$ autoIncrement变量可用于匿名函数? Seeder在更新之间保持不变。
错误图片: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;
}
}
编辑:对这个问题表示赏心悦目,因为我认为社区得到详细答案会有所帮助。我正在寻求帮助来解释如何确保我在每个循环中抓取相同的条目。
答案 0 :(得分:0)
例如,如果您的步骤模型名称是步骤:
$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
]);
}
}
答案 1 :(得分:0)
很抱歉,如果您不理解我的观点,那么我将尝试在代码
中解释它 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;
}
答案 2 :(得分:0)
最终解决了!
所以我接受了每个人的答案,并且想了解使用for循环来创建订单号的过程。 1-5。我最后遇到的问题是$ i变量没有重置。因此,在收益后,我必须检查$ 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,
]);
}
感谢所有帮助过的人!