我正在尝试将 CakeDC 评级添加到我的 CakePHP 网站。我已按照插件提供的自述文件中的说明进行操作,但评级星星没有出现。当我按“评分”时,评分也不会保存。这是视图文件中的代码:
<h3><?php echo ($post['Post']['title']); ?></h3>
<?php echo $this->Rating->display(array(
'item' => $post['Post']['id'],
'type' => 'radio',
'stars' => 5,
'value' => $post['Post']['rating'],
'createForm' => array('url' => array_merge($this -> passedArgs, array('rate' => $post['Post']['id'], 'redirect' => true)))));?></h3>
按“Rate”后,url 更改为 '.../rate:2/redirect:1' ,但数据不会出现在数据库中。我是不是错过了什么?
我也遇到了这个问题,但我所做的是,我添加了这个
public $components = array('Ratings.Ratings');
public $actsAs = array('Ratings.Ratable');
之后,它成功保存了数据