laravel中数据库表得关联问题
程序员文章站
2022-04-09 10:25:45
...
控制器中:
public getShow($id){
$post=Post::find($id)
return View::make('admin.post-detail')->with('posts',$post);
}
在post模板中:
public function user(){
return $this->belongsTo('User');
}
然后在post-detail.blade.php中可以这样使用:$post->user ..
@foreach($posts as $post)
{{$post->user->username}}
@endforeach
而posts表中并没有user字段 为什么却可以查询出来结果?
回复内容:
控制器中:
public getShow($id){
$post=Post::find($id)
return View::make('admin.post-detail')->with('posts',$post);
}
在post模板中:
public function user(){
return $this->belongsTo('User');
}
然后在post-detail.blade.php中可以这样使用:$post->user ..
@foreach($posts as $post)
{{$post->user->username}}
@endforeach
而posts表中并没有user字段 为什么却可以查询出来结果?
会在post表中找user_id字段,如果您想定义一个不同的外键字段,您可以通过 belongsTo 函数的第二个参数传递它:
class Phone extends Eloquent {
public function user()
{
return $this->belongsTo('User', 'local_key');
}
}
belongsTo()
函数是 Laravel Eloquent 提供的模型间关系的一种,Post
类由于继承了\Eloquent
类所以也可以调用。
模型间关系具体该如何使用可以参考:深入理解 Laravel Eloquent(三)——模型间关系(关联)
请查看laravel的Eloquent ORM用法。
Defining The Inverse Of A Relation
php
class Post extends Eloquent { public function user() { //$foreignKey默认为当前调用函数_id,即user_id,$otherKey为当前类主键id //select user_id from post where id=$post_id; //select username from user where user_id=$user_id; return $this->belongsTo('User', $foreignKey, $otherKey); } }
推荐阅读
-
SQL Server 数据库调整表中列的顺序操作方法及遇到问题
-
Laravel5的数据库表建立问题
-
Laravel5的数据库表建立问题
-
mysql-请问数据库表中可以在一个表里面有两个关联同一个表的外键吗?
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
数据库中已知一个表数据查询另一个表数据的问题
-
Laravel5 的多对多关系中,在 blade 模板里面如何循环输出其中一张表的字段,而且输出其关联对应的另外一张表的字段
-
在oracle 数据库查询的select 查询字段中关联其他表的方法
-
SQL Server 数据库调整表中列的顺序操作方法及遇到问题
-
mysql-MySQL中关联查询两个表的问题,在线等!!!急急急