【发布时间】:2014-07-16 18:09:26
【问题描述】:
我有一个 Org 模型和一个 Tag 模型。我想将标签与组织相关联。我的数据库表和 Eloquent 模型是这样设置的......
org
id - integer
name - string
...
tags
id - integer
name - string
taggables
id - integer
taggable_id - integer
taggable_type - string
// app/models/Org.php
class Org extends Eloquent
{
protected $table = "org";
...
public function tags()
{
return $this->morphToMany('Tag', 'taggable');
}
}
// app/models/Tag.php
class Tag extends Eloquent
{
protected $table = "tags";
public $timestamps = false;
public function org()
{
return $this->morphedByMany('Org', 'taggable');
}
}
在我看来,我有一个带有多选框的表单,用户可以在其中选择他/她想要与组织关联的标签...
...
{{ Form::select('tags[]', $tag_options, null, array(
'multiple',
'data-placeholder' => 'Select some tags'))
}}
...
... $tag_options 来自我的 routes.php 文件...
View::composer('*', function($view)
{
$tags = Tag::all();
if(count($tags) > 0)
{
$tag_options = array_combine($tags->lists('id'),
$tags->lists('name'));
}
else
{
$tag_options = array(null, 'Unspecified');
}
$view->with('tag_options', $tag_options);
});
当我视图中的表单被提交时,下面的路由会捕获它来更新组织模型...
Route::put('org/{org}', function(Org $org){
$org->description = Input::get('description');
$org->website = Input::get('website');
$org->tags = Input::get('tags');
$org->save();
return Redirect::to('org/'.$org->id)
->with('message', 'Seccessfully updated page!');
});
现在,Input::get('tags') 只是一个标签 ID 的数组,格式为
["1","6","8"]
如何使用它来将标签与组织相关联?
我还为使用多态关系的组织设置了 cmets,我只是这样做...
Route::put('org/post/{org}', function(Org $org){
$comment = new Comment;
$comment->user_id = Auth::user()->id;
$comment->body = Input::get('body');
$comment->commentable_id = $org->id;
$comment->commentable_type = 'Org';
$comment->save();
return Redirect::to('org/'.$org->id)
->with('message', 'Seccessfully posted comment!');
});
但是,当我想将一个或多个标签与组织相关联时,多对多的多态关系并不那么简单。
感谢任何帮助,谢谢!
【问题讨论】:
标签: laravel-4 eloquent polymorphic-associations