这是我在 newsses/index.ctp 中的链接
$this->Html->link(__("Read more >>", TRUE), array('action'=>'view', $newss['Newsse']['title']));
这是我在 newsses_controller.php 中的视图代码:
function view($title = NULL){
$this->set('title_for_layout', __('News & Event', true));
if (!$id) {
$this->Session->setFlash(__('Invalid News.', true), 'default', array('class' => 'error'));
$this->redirect(array('action'=>'index'));
}
$this->set('newsse', $this->Newsse->read(NULL,$title));
$this->set('newsses', $this->Newsse->find('all'));
}
但它没有显示任何内容,我想制作如下路线:“newsses/view/2”到“newsses/view/title_of_news”
请帮我....