CakePHP:使用帖子标题作为视图方法的slug

时间:2011-08-11 22:30:02

标签: cakephp

我一直在尝试使用以下方法来创建网址:

domain.com/portfolio/This_is_a_test_post

function view ( $title )
{       
    $post = $this->Portfolio->find('first', array('conditions' => array(Inflector::slug('Portfolio.title') => $title)));

    //$posts = $this->Portfolio->title = Inflector::slug($title);

    if (empty($title))
    {
        $this->cakeError('error404');
    }
    else
    {
        $this->set(compact('post'));
    }
}

然而它没有显示帖子!显然我做错了什么......关于如何解决这个问题的任何想法?感谢

4 个答案:

答案 0 :(得分:5)

我建议使用该ID来寻址您网站上的内容,这样您就不必担心处理标题/ slug更改了。对于搜索引擎优化的观点,您可以轻松地使用Slug,而无需在技术上做任何事情:

function view($id) {
   $this->Post->id = $id;
   $this->set('post',$this->Post->read());
}

在您看来,创建这样的链接:

$this->Html->link('name of the link', array('controller' => 'posts', 'action' => 'view', $post['Post']['id'], Inflector::slug($post['Post']['title'])));

现在您的网址将如下所示:

domain.com/posts/13/This_is_a_test_post

请注意,slug没有做任何事情,但是给了你SEO的好处

答案 1 :(得分:2)

它不起作用,因为您将Inflector :: slug函数应用于列的名称。 尝试相反的方式.., 在帖子中添加一个slug列,并在使用Inflector添加帖子时创建slug,在添加帖子时尝试这样的事情:

$this->data['Post']['slug'] = Inflector::slug($this->data['Post']['title']);

并在您的控制器上执行此操作:

function view($slug = null) {
    if (is_null($slug)) {
        $this->cakeError('error404');
    } else {
        $post = $this->Post->findBySlug($slug);
        $this->set(compact('post'));
    }
}
应该做的伎俩...我希望它有所帮助..

答案 2 :(得分:0)

你不能那样做。保存帖子时,你应该已经标题了;或者如果你想保留标题,请将slu to放到另一个字段中稍后查找。

 function view ( $title = null ){       
   if(!$title)$this->redirect(array('action'=>'index'));
   $post = $this->Portfolio->find('first', array('conditions' => array('Portfolio.title' => $title)));
   $this->set(compact('post'));
 }

答案 3 :(得分:0)

您可以使用此lib支持转换网址而无需更多努力

http://someguyjeremy.com/blog/slugs-ugly-bugs-pretty-urls