我使用关系的条件/约束创建了一个模型游戏,如下所示:
class Game extends Eloquent {
// many more stuff here
// relation without any constraints ...works fine
public function videos() {
return $this->hasMany('Video');
}
// results in a "problem", se examples below
public function available_videos() {
return $this->hasMany('Video')->where('available','=', 1);
}
}
以某种方式使用它时:
$game = Game::with('available_videos')->find(1);
$game->available_videos->count();
一切正常,因为角色是最终的集合。
我的问题:
当我尝试访问它时没有急切加载
$game = Game::find(1);
$game->available_videos->count();
抛出异常,因为它说“调用非对象上的成员函数count()”。
使用
$game = Game::find(1);
$game->load('available_videos');
$game->available_videos->count();
工作正常,但对我来说似乎很复杂,因为我不需要加载相关模型,如果我不在我的关系中使用条件。
我错过了什么吗?我怎样才能确保可以在不使用预先加载的情况下访问available_videos?
对于任何有兴趣的人,我也在http://forums.laravel.io/viewtopic.php?id=10470
上发布了此问题答案 0 :(得分:54)
我认为这是正确的方法:
class Game extends Eloquent {
// many more stuff here
// relation without any constraints ...works fine
public function videos() {
return $this->hasMany('Video');
}
// results in a "problem", se examples below
public function available_videos() {
return $this->videos()->where('available','=', 1);
}
}
然后你必须
$game = Game::find(1);
var_dump( $game->available_videos()->get() );
答案 1 :(得分:19)
我认为这就是你要找的东西(Laravel 4,见http://laravel.com/docs/eloquent#querying-relations)
$games = Game::whereHas('video', function($q)
{
$q->where('available','=', 1);
})->get();
答案 2 :(得分:11)
//较低的v4某个版本
public function videos() {
$instance =$this->hasMany('Video');
$instance->getQuery()->where('available','=', 1);
return $instance
}
// V5
public function videos() {
return $this->hasMany('Video')->where('available','=', 1);
}
答案 3 :(得分:10)
以防万一其他人遇到同样的问题。
请注意,关系必须是camelcase。所以在我的情况下,available_videos()应该是可用的视频()。
您可以轻松找到调查Laravel来源:
// Illuminate\Database\Eloquent\Model.php
...
/**
* Get an attribute from the model.
*
* @param string $key
* @return mixed
*/
public function getAttribute($key)
{
$inAttributes = array_key_exists($key, $this->attributes);
// If the key references an attribute, we can just go ahead and return the
// plain attribute value from the model. This allows every attribute to
// be dynamically accessed through the _get method without accessors.
if ($inAttributes || $this->hasGetMutator($key))
{
return $this->getAttributeValue($key);
}
// If the key already exists in the relationships array, it just means the
// relationship has already been loaded, so we'll just return it out of
// here because there is no need to query within the relations twice.
if (array_key_exists($key, $this->relations))
{
return $this->relations[$key];
}
// If the "attribute" exists as a method on the model, we will just assume
// it is a relationship and will load and return results from the query
// and hydrate the relationship's value on the "relationships" array.
$camelKey = camel_case($key);
if (method_exists($this, $camelKey))
{
return $this->getRelationshipFromMethod($key, $camelKey);
}
}
这也解释了为什么我的代码工作,每当我使用load()方法加载数据。
无论如何,我的示例现在完全正常,$ model-> availableVideos总是返回一个集合。
答案 4 :(得分:4)
如果你想在关系表上应用条件,你也可以使用其他解决方案。这个解决方案正在我的工作中。
public static function getAllAvailableVideos() {
$result = self::with(['videos' => function($q) {
$q->select('id', 'name');
$q->where('available', '=', 1);
}])
->get();
return $result;
}
答案 5 :(得分:1)
我通过将关联数组作为Builder::with
方法内的第一个参数传递来解决了类似的问题。
想象一下,您想通过一些动态参数包括子关系,但又不想过滤父结果。
Model.php
public function child ()
{
return $this->hasMany(ChildModel::class);
}
然后,在其他地方,放置逻辑后,您可以执行诸如通过HasMany
类过滤关系的操作。例如(非常类似于我的情况):
$search = 'Some search string';
$result = Model::query()->with(
['child' => function (HasMany $query) use ($search) {
$query->where('name', 'like', "%$name%");
}]
);
然后,您将过滤所有子结果,但父模型将不过滤。 谢谢您的关注。
答案 6 :(得分:0)
您是否为“角色”创建了模型。 即使在为角色创建模型后,也要检查问题是否存在。
答案 7 :(得分:0)
模型(App \ Post.php):
/**
* Get all comments for this post.
*/
public function comments($published = false)
{
$comments = $this->hasMany('App\Comment');
if($published) $comments->where('published', 1);
return $comments;
}
控制器(App \ Http \ Controllers \ PostController.php):
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function post($id)
{
$post = Post::with('comments')
->find($id);
return view('posts')->with('post', $post);
}
刀片模板(posts.blade.php):
{{-- Get all comments--}}
@foreach ($post->comments as $comment)
code...
@endforeach
{{-- Get only published comments--}}
@foreach ($post->comments(true)->get() as $comment)
code...
@endforeach
答案 8 :(得分:0)
public function outletAmenities()
{
return $this->hasMany(OutletAmenities::class,'outlet_id','id')
->join('amenity_master','amenity_icon_url','=','image_url')
->where('amenity_master.status',1)
->where('outlet_amenities.status',1);
}