我正在编写一个应用程序,需要使用Link表链接在一起的2个表,所以总共有3个表。
//-------
Users
//------
id,
name,
email,
password
//----
UserAccountType
//----
id,
name,
description
//---
UserAccountLink
//---
id,
user_id,
type_id,
用户可以拥有多种帐户类型(管理员,普通帐户,开发人员)...另外,我设置了外键限制。
唯一的问题是我不明白我将如何链接这些,我尝试了以下内容:
class User extends Model {
// implementation
public function account_type()
{
$this->hasMany('UserAccountTypeLink', 'id', 'id');
}
}
class UserAccountType extends Model {
// Implementation
}
class UserAccountTypeLink extends Model {
// Implementation
public function user_account()
{
return $this->hasOne('UserAccountType', 'type_id', 'id');
}
}
我的预期输出是,例如,用户1拥有“Admin”和“Developer”的帐户。但目前,我似乎无法获得这种理想的输出。对我出错的地方有任何想法吗?
答案 0 :(得分:2)
您不需要中间UserAccountTypeLink表的模型。看看这里获取有关如何在Eloquent中创建多对多关系的更多信息:http://laravel.com/docs/5.1/eloquent-relationships#many-to-many