使用laravel中的php从多对多关系中返回特定列

时间:2015-09-07 07:03:54

标签: php laravel-4 many-to-many transform

在我的数据库中,我有两个模型,User和Role被定义为许多关系,我正在尝试在laravel中编写一个代码,该代码从roles表中获取id并从users表中获取所有用户的全名。

我已经定义了一个如下所示的路线:

Route::get('roleUser/{role}', 'RoleController@RoleNames');

我在其中传递角色名称,如上所示

在我的RoleController中,我定义了方法roleNames来完成工作

public function RoleNames($role)
{


    $idrole = Role::where('name', '=', $role)->first()->id;
    //$iduser = DB::table('assigned_roles')->where('role_id', '=', $idrole)->first()->id;
    $iduser = DB::table('assigned_roles')->where('role_id', '=', $idrole)->get(array('id'));

    $usersUnderRole = array();
    foreach ($iduser as $idusers) {

        $usersUnderRole = array_add($usersUnderRole, $idrole, $idusers);

         $full_name = DB::table('users')->where('id', '=', $idusers)->get()->full_name;
     }
         return $this->respond([
             'result' => $this -> roleTransformer->transform($full_name)

         ]);
}

此代码用于从role_id表中获取roles并通过数据透视表assigned_roles获取相应的user_ids,将它们放入数组并获取对应的{{1} },但它说这个错误:

  
      
  • 类stdClass的对象无法转换为字符串
  •   

有关如何使其发挥作用的任何建议?

2 个答案:

答案 0 :(得分:0)

这将为您提供属于给定角色的所有用户:

$role_id = 3;

$result = DB::table('role_user')
  ->select('users.full_name')
  ->where('role_user.role_id', $role_id)
  ->leftJoin('users', 'users.id', '=', 'role_user.user_id')
  ->get();

var_dump($result);

答案 1 :(得分:0)

除了@lamzazo提供的解决方案之外,还有另一种方法可以解答:

        $role2 = Role::where('name', '=', $role)->first();

        $idrole = Role::where('name', '=', $role)->first()->id;
        //$iduser = DB::table('assigned_roles')->where('role_id', '=', $idrole);
        $user = DB::table('assigned_roles')->where('role_id', '=', $idrole)->get();
       // $user = DB::table('users')->where('id', '=', $iduser);


        // return $this->respond($iduser[0]->user_id);


       $userArray = array();

        $i=0;

        foreach ($user as $users) {
            $iduser= $users->user_id;
            $allusers = User::where('id', '=', $iduser)->get(array('id', 'full_name'));
            $userArray = array_add($userArray, $i . '', $allusers);
            $i++;

        }



       return $this->respond([
              'result' => $this -> roleTransformer->testTransform($role2, $userArray)

       ]);