1

我想用 Symfony 1.4 在 Ajax 中创建一个“喜欢/不喜欢”按钮。

我有这些表:

| Song | ------- n --------------------------- n ---------- | sfGuardUser |
                               |
                          | LikeSong |                 `

我已经阅读了 symfony AJAX 文档,但它是 1.0 文档。1.4很轻。所以,这是我首先尝试做的。

/app/frontend/module/likesong/_voting.php

<?php
    if($song->hasVote())
    {
        jq_link_to_remote('I do not like', array('complete' => '[??? Update my link]', 'url' => 'likesong/notlike?id_song='.$song->getId()));
    }
    else
    {
        jq_link_to_remote('I like', array('complete' => '[??? Update my link]', 'url' => 'likesong/like?id_song='.$song->getId()));
    }
    echo ' - '.$song->getNbVote();
?>

/app/frontend/config/routing.yml

song_like:
  url:      /song-like/:id
  param:    { module: song, action: like }

song_notlike:
  url:      /song-not-like/:id
  param:    { module: song, action: notLike }

/app/frontend/module/likesong/actions.class.php

public function executeLike(sfWebRequest $request)
{
  if ($request->isXmlHttpRequest())
  {                              
    if(USER HAS NOT YET VOTED)
    {
      $this->vote = new LikeSong();

      $this->vote->setSongId($this->song()->getId());
      $this->vote->setSfGuardUserId($this->getUser()->getId());
      $this->vote->save();

      return $this->renderText('notlike');
      else
      {
        // Display flash
      }
    }
 }

public function executeNotLike(sfWebRequest $request)
{
  if ($request->isXmlHttpRequest())
  {                              
     if(USER ALREADY VOTED)
     {
        // Delete form database

        return $this->renderText('like');
        else
        {
          // Display flash
        }
      }
}

当用户点击时,“我喜欢这首歌”应该替换为“我不喜欢这首歌”。

4

1 回答 1

3

首先,您的控制器中不应该有业务逻辑。

你的模板代码也很奇怪——我从来没有用过jq_link_to_remote()任何ajax,快速搜索这个功能,似乎有很多麻烦。如果你重新开始受孕,你可能会解决很多问题。

  1. 用户喜欢或不喜欢一首歌应该写在你的Song课堂上。我会写这样的东西:

    class Song extends BaseSong
    {
    
        public function userLike($user_id)
        {
            return in_array($user_id, $this->getLikers()->getPrimaryKeys()));
        }
    
        public function switchLike($user_id)
        {
            if ($this->userLike($user_id))
            {
                $this->getLikers()->remove($user_id);
                $this->save();
                return 0;
            }
            else
            {
                $this->getLikers()->add(Doctrine::getTable('User')->find($user_id));
                $this->save();
                return 1;
            }
        }
    }
    
  2. 您应该始终编写可以使用或不使用 AJAX 调用的干净控制器。该isXmlHttpRequest()功能可能非常强大,但不能破坏您网站的可访问性。Javascript 必须保持可选,您的链接必须具有标准 http 调用的功能后备。我会从这样的事情开始:

    public function executeIndex(sfWebRequest $request)
    {
          // Here the code for the whole song's page, which will include your _vote partial
    }
    
    public function executeSwitchLike(sfWebRequest $request)
    {
          $this->song = Doctrine::getTable('Song')->find($request->getParameter('id'));
          $this->song->switchLike($this->getUser()->getId());
          $this->redirect('song/index?id='.$request->getParameter('id'));
    }
    

然后,使用“喜欢”或“不喜欢”的简单 http 链接编写您的模板。您应该具有重新加载整个页面的行为,只需切换“喜欢”状态。

最后,用一个简单的调用重载这个链接jquery.load(),它只替换你打算替换的 HTML 元素:

$('#like_block').load('/switchLike?id=<?php echo $song->id ?>');

它将导致整个 PHP 执行,这是使用 AJAX 的好方法,但只会重新加载您的特定 HTML 元素。

于 2012-12-12T16:39:40.697 回答