ãCakePHPãã使ã£ã¦ã¿ã ã10ã ã¿ã°æ©è½ãä½ã£ã¦ã¿ã
ã¿ã°æ©è½ãä½ã£ã¦ã¿ããã¨ã«ã
ãã¼ãã«ãä½ã
ããã¥ã¡ã³ãã®ã6.4.5. hasAndBelongsToMany ã®å®ç¾©ã¨åãåãããããããã¡ããã©ä¼¼ããããªè©±ãªã®ã§ããã¼ãã«æ§æãåèã«ã
http://cakephp.jp/doc/ch06s04.html#id4803164
CREATE TABLE `tuto_tags` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `tag` INT NOT NULL ) TYPE = MYISAM ; CREATE TABLE `tuto_posts_tags` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `post_id` INT NOT NULL , `tag_id` INT NOT NULL ) TYPE = MYISAM ;
Tag ã¢ãã«ãä½ã
- /home/theworld/cake/project/tutorial/models/tag.php
<?php class Tag extends AppModel { var $name = 'Tag'; var $hasAndBelongsToMany = array( 'Tag' => array( 'className' => 'Post', 'joinTable' => 'posts_tags', 'foreignKey' => 'tag_id', 'associationForeignKey'=> 'post_id', ), ); } ?>
Post ã¢ãã«ã«ãã¢ã½ã·ã¨ã¼ã·ã§ã³ã追å
- /home/theworld/cake/project/tutorial/models/post.php
<?php class Post extends AppModel { var $name = "Post"; var $validate = array( 'title' => array('required' => VALID_NOT_EMPTY), 'body' => array('required' => VALID_NOT_EMPTY), ); var $hasMany = array( 'Comment' => array( 'className' => 'Comment', 'conditions' => '', 'order' => '', 'dependent' => true, 'foreignKey' => 'post_id', ), ); // ã³ã³ãã var $hasAndBelongsToMany = array( 'Tag' => array( 'className' => 'Tag', 'joinTable' => 'posts_tags', 'foreignKey' => 'post_id', 'associationForeignKey'=> 'tag_id', 'conditions' => '', 'order' => '', 'limit' => '', 'unique' => true, 'finderQuery' => '', 'deleteQuery'=> '', ) ); } ?>
Post ã® add ãã¥ã¼ã«ã¿ã°ç¨ã®ãã©ã¼ã ã追å
- /home/theworld/cake/project/tutorial/views/posts/add.thtml
<p>Tag:(ã«ã³ãåºåãã§å ¥å) <?php echo $form->input('Post.tag', array('type' => 'text'))?> <p>
Post ã³ã³ããã¼ã© ã® add ãã¡ã³ã¯ã·ã§ã³ã«ã¿ã°ç»é²ã®å¦çã追å
- /home/theworld/cake/project/tutorial/controllers/posts_controller.php
å¦çã®æµã
- å ¥åãããã«ã³ãåºåãã®ãã¼ã¿ãã°ãã
- ãã©ããã¿ã°ã tuto_tags ã«ç»é²ããã¦ããããã¦ãã確èª
- ç¡ãã£ããç»é²ãç»é²idãåå¾ããã§ã«ããå ´åã¯ãã® id ãåå¾ã
- post_id 㨠tag_id ã tuto_posts_tags ã«è¨é²
<?php class PostsController extends AppController { var $name = 'Posts'; var $uses = array('Tag','Post'); function add() { if(!empty($this->data)) { $id_array = array(); // ãããã if($this->data['Post']['tag']) { $tags_array = explode(',', $this->data['Post']['tag']); foreach($tags_array as $k => $v) { $tagdata = $this->Tag->findByTag(trim($v)); if(empty($tagdata)) { $tmp['Tag'][] = array('tag' => trim($v), 'id' => ''); $id_array[] = $this->Tag->getLastInsertId(); } else { $id_array[] = $tagdata['Tag']['id']; } } } //ããã¾ã§ if(!empty($id_array)) { $this->data['Tag']['Tag'] = $id_array; } if($this->Post->save($this->data)) { $this->flash('Your post has been saved', '/posts/'); } } } } ?>
//ããããã//ããã¾ã§ãã¨ã³ã¡ã³ãã¤ããé¨åã¯ããã¼ã¿ãã¼ã¹ã®å¦çã«ãªãããã¢ãã«ã®æ¹ã«åãåºãã®ãæ£ããã®ã ããã?
tuto_tags ã«ç»é²ããåãã¼ã¿ãä½ã以ä¸ã®é¨åã¯ã
$tmp['Tag'][] = array('tag' => trim($v), 'id' => '');
æåä¸ã®ããã«æ¸ãã¦ãã¦ãã¾ããããªãã£ãã
$tmp['Tag'][] = array('tag' => trim($v));
æåã®ããã«ç©ºæåãã¤ããªãã¨ãããªãã£ãã
ã¨ããããä¸è¨ã§ã¿ã°ã®ç»é²ã¯ã§ããããã«ãªã£ãã
ç·¨éããå ´åã¯ãã¿ã°ã®ãªã¹ããæã£ã¦ãã¦ã«ã³ãåºåãã§ã¤ãªãã¦å¾©å
ãã¦ããã¦ãã¨ããã«ã³ã¸ã«ãªãããªãæéãç¡ãã®ã§å¾ã§è©¦ãã¦ã¿ããã¨ã«ã
è¨æ¶ãå¼ã³è¦ã¾ããªããæ¸ãã¦ããã®ã§å
¨ç¶ã ãã ã
ãããªãããã£ã¨ã¡ã¢ããªãã¨å¾ã§è¦ã¦åèã«ãªããªã!
ãã¼ã¿ãã¼ã¹ã®ã¢ã½ã·ã¨ã¼ã·ã§ã³ã«ã¤ãã¦ã¯ä»å¾ã課é¡ã
ã»ãã·ã§ã³ããã£ãã·ã¥ã«ã¤ãã¦ã試ããªãã¦ã¯ã