doucao1888 2016-10-02 16:33
浏览 57
已采纳

使用Laravel中的工厂为枢轴表播种

I'm new to Laravel and I'm looking for a good way to seed a pivot table using factories. I don't want to use plain seeders. I'll show you the case:

I have three tables (users, skills, and user_skill).

users                user_skill                 skills
+----------------+   +----------------------+   +-----------------+
| id  | name     |   | user_id | section_id |   | id  | skills    |
+----------------+   +----------------------+   +-----------------+
| 1   | Alex     |   |         |            |   | 1   | draw      |
|----------------|   |----------------------|   |-----------------|
| 2   | Lucy     |   |         |            |   | 2   | program   |
|----------------|   |----------------------|   |-----------------|
| 3   | Max      |   |         |            |   | 3   | social    |
|----------------|   |----------------------|   +-----------------+
| 4   | Sam      |   |         |            |
+----------------+   +----------------------+

Is there a good way to take real Id's of the Users table and real Id's of Skills table to seed the pivot table? I want to do it randomly, but I don't want random numbers that doesn't match to any id. I want the Id to match with the users and skills.

I don't know how to start, and I'm looking for a good example. Maybe something like this?

$factory->defineAs(App\User::class, 'userSkills', function ($faker) {
    return [
        'user_id' => ..?
        'skills_id' => ..?
    ];
});
  • 写回答

2条回答 默认 最新

  • douzhuan4406 2016-10-02 16:55
    关注

    I do not think that this is the best approach but it works for me.

    $factory->define(App\UserSkill::class, function (Faker\Generator $faker) {
        return [
            'user_id' => factory(App\User::class)->create()->id,
            'skill_id' => factory(App\Skill::class)->create()->id,
        ];
    });
    

    If you do not want to create a model just for the pivot table, you can insert it manually.

    DB::table('user_skill')->insert(
        [
            'user_id' => factory(App\User::class)->create()->id,
            'skill_id' => factory(App\Skill::class)->create()->id,
        ]
    );
    

    Or, with random existing values.

    DB::table('user_skill')->insert(
        [
            'user_id' => User::select('id')->orderByRaw("RAND()")->first()->id,
            'skill_id' => Skill::select('id')->orderByRaw("RAND()")->first()->id,
        ]
    );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据
  • ¥20 软件测试决策法疑问求解答