我尝试使用我的ProfilesController,以便它返回我需要的所有必要数据,以便在从数据库返回后将其传递给我的视图。使用它在我的控制器中显示方法从我的用户模型返回数据然后eagar从配置文件加载数据我希望它确保它在配置文件数组中添加嵌套的社交链接数组。
<?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\User;
use Illuminate\Http\Request;
class ProfilesController extends Controller {
/**
* Display the specified resource.
*
* @param int $id
* @return Response
*/
public function show($username)
{
$user = User::with('profile')->whereUsername($username)->firstOrFail();
return $user;
return view('profile', compact('user'));
}
}
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class UserProfile extends Model {
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'user_profiles';
/**
* Assigns the relationship between a user proifle and their social links.
*
* @return mixed
*/
public function social_links()
{
return $this->hasOne('App\UserProfileSocialLinks');
}
}
这是返回当前的JSON对象。
{
id: 1,
created_at: "2015-03-28 21:25:19",
updated_at: "2015-03-28 21:25:19",
deleted_at: null,
profile: {
id: 1,
user_id: 1,
bio: "This is just my personal biography!",
created_at: "2015-03-28 21:25:34",
updated_at: "2015-03-28 21:25:34",
deleted_at: null
}
}
我希望JSON对象如此显示:
{
id: 1,
created_at: "2015-03-28 21:25:19",
updated_at: "2015-03-28 21:25:19",
deleted_at: null,
profile: {
id: 1,
user_id: 1,
bio: "This is just my personal biography!",
created_at: "2015-03-28 21:25:34",
updated_at: "2015-03-28 21:25:34",
deleted_at: null,
social_links {
...
}
}
}
答案 0 :(得分:1)
模型关系不会执行查询,但它确实允许您访问dynamic properties。
您可以在查询中添加join子句,以便将子查询属性添加到结果中。
答案 1 :(得分:1)
如果要添加嵌套关系,则需要以with
这种方式指定它们:
$user = User::with('profile.social_links')->whereUsername($username)->firstOrFail();
这样您就可以为个人资料加载个人资料和社交链接。
或者,您可以在toArray
类中创建自定义Profile
方法以加载所有必需的关系。