Neden bu Zend Framework _redirect () çağrısı başarısız oluyor?

3 Cevap php

Ben Zend Framework bir Facebook uygulaması geliştiriyorum. StartAction In () aşağıdaki hatayı alıyorum:

URL http://apps.facebook.com/rails%5Facross%5Feurope/turn/move-trains-auto geçerli değil.

Ben aşağıda startAction için kod () dahil ettik. Ben de moveTrainsAutoAction için kodu (bunların hepsi TurnController eylemlerdir) I) (startAction in () Benim _redirect ile yanlış bir şey bulamıyorum dahil ettik. Ben diğer eylemler aynı yönlendirme kullanıyorum ve onlar kusursuz yürütmek. Eğer benim kod gözden ve bir sorun bulursanız lütfen bana bildirin istiyorsunuz? Bunu takdir ediyorum! Teşekkürler.

  public function startAction() {
    require_once 'Train.php';
    $trainModel = new Train();

    $config = Zend_Registry::get('config');

    require_once 'Zend/Session/Namespace.php';
    $userNamespace = new Zend_Session_Namespace('User');
    $trainData = $trainModel->getTrain($userNamespace->gamePlayerId);

    switch($trainData['type']) {
      case 'STANDARD':
      default:
        $unitMovement = $config->train->standard->unit_movement;
        break;
      case 'FAST FREIGHT':
        $unitMovement = $config->train->fast_freight->unit_movement;
        break;
      case 'SUPER FREIGHT':
        $unitMovement = $config->train->superfreight->unit_movement;
        break;
      case 'HEAVY FREIGHT':
        $unitMovement = $config->train->heavy_freight->unit_movement;
        break;
    }
    $trainRow = array('track_units_remaining' => $unitMovement);
    $where = $trainModel->getAdapter()->quoteInto('id = ?', $trainData['id']);
    $trainModel->update($trainRow, $where);
    $this->_redirect($config->url->absolute->fb->canvas . '/turn/move-trains-auto');
  }
.
.
.
  public function moveTrainsAutoAction() {
$log = Zend_Registry::get('log');
$log->debug('moveTrainsAutoAction');
    require_once 'Train.php';
    $trainModel = new Train();

    $userNamespace = new Zend_Session_Namespace('User');
    $gameNamespace = new Zend_Session_Namespace('Game');

    $trainData = $trainModel->getTrain($userNamespace->gamePlayerId);

    $trainRow = $this->_helper->moveTrain($trainData['dest_city_id']);
    if(count($trainRow) > 0) {
      if($trainRow['status'] == 'ARRIVED') {
        // Pass id for last city user selected so we can return user to previous map scroll postion
        $this->_redirect($config->url->absolute->fb->canvas . '/turn/unload-cargo?city_id='.$gameNamespace->endTrackCity);
      } else if($trainRow['track_units_remaining'] > 0) {
        $this->_redirect($config->url->absolute->fb->canvas . '/turn/move-trains-auto');
      } else { /* Turn has ended */
        $this->_redirect($config->url->absolute->fb->canvas . '/turn/end');
      }
    }
    $this->_redirect($config->url->absolute->fb->canvas . '/turn/move-trains-auto-error'); //-set-destination-error');
  }

3 Cevap

Ben cevap bulmuş olabilir düşünüyorum. Bu Facebook yönlendirme ile güzel oynamıyor ki görünür, bu yüzden Facebook'un 'fb: yönlendirmek' kullanmak için gerekliyse olduğunu FBML. Bu işe görünür:

$this->_helper->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender();

echo '<fb:redirect url="' . $config->url->absolute->fb->canvas . '/turn/move-trains-auto"/>';

@Jani Hartikainen yaptığı açıklamada belirttiği gibi, URL-kodlamak için altını gerçekten gerek yoktur. Ben kendi bazı url kodlama yapar yönlendirmek inanıyorum beri, edebi çizgi ile yönlendirmek için çalışacağız ve bu işleri görmek.


Gerçekten soruya ilişkin, ama bence sizin kod switch-case ifadeleri (ya da en azından tek bir noktaya onları lokalize) kurtulmak için biraz refactor Not:

kontrolörleri / TrainController.php

[...]
public function startAction() {
    require_once 'Train.php';
    $trainTable = new DbTable_Train();

    $config = Zend_Registry::get('config');

    require_once 'Zend/Session/Namespace.php';
    $userNamespace = new Zend_Session_Namespace('User');
    $train = $trainTable->getTrain($userNamespace->gamePlayerId);

    // Add additional operations in your getTrain-method to create subclasses
    // for the train
    $trainTable->trackStart($train);
    $this->_redirect(
       $config->url->absolute->fb->canvas . '/turn/move-trains-auto'
    );
  }
  [...]

modeller / DBTable / Train.php

  class DbTable_Train extends Zend_Db_Table_Abstract
  {
     protected $_tableName = 'Train';
     [...]
     /**
      *
      *
      * @return Train|false The train of $playerId, or false if the player
      * does not yet have a train
      */
     public function getTrain($playerId)
     {
         // Fetch train row
         $row = [..];
         return $this->trainFromDbRow($row);

     }
     private function trainFromDbRow(Zend_Db_Table_Row $row)
     {
         $data = $row->toArray();
         $trainType = 'Train_Standard';
         switch($row->type) {
           case 'FAST FREIGHT':
             $trainType = 'Train_Freight_Fast';
             break;
           case 'SUPER FREIGHT':
             $trainType = 'Train_Freight_Super';
             break;
           case 'HEAVY FREIGHT':
             $trainType = 'Train_Freight_Heavy';
             break;
         }
         return new $trainType($data);
     }

     public function trackStart(Train $train)
     {
         // Since we have subclasses here, polymorphism will ensure that we 
         // get the correct speed etc without having to worry about the different
         // types of trains.
         $trainRow = array('track_units_remaining' => $train->getSpeed());
         $where = $trainModel->getAdapter()->quoteInto('id = ?', $train->getId());
         $this->update($trainRow, $where);
     }
     [...]

/ Modelleri / Train.php

abstract class Train
{

   public function __construct(array $data)
   {
      $this->setValues($data);
   }

   /**
    * Sets multiple values on the model by calling the
    * corresponding setter instead of setting the fields
    * directly. This allows validation logic etc
    * to be contained in the setter-methods.
    */
   public function setValues(array $data)
   {
      foreach($data as $field => $value)
      {
         $methodName = 'set' . ucfirst($field);
         if(method_exists($methodName, $this))
         {
            $this->$methodName($value);
         }
      }
   }
   /**
    * Get the id of the train. The id uniquely
    * identifies the train.
    * @return int
    */
   public final function getId () 
   {
      return $this->id;
   }
   /**
    * @return int The speed of the train / turn
    */
   public abstract function getSpeed ();
   [..] //More common methods for trains
}

/ Modelleri / Tren / Standard.php

class Train_Standard extends Train
{
    public function getSpeed ()
    {
       return 3;
    }
    [...]
}

/ Modelleri / Tren / Yük / Super.php

class Train_Freight_Super extends Train
{
    public function getSpeed ()
    {
       return 1;
    }

    public function getCapacity ()
    {
       return A_VALUE_MUCH_LARGER_THAN_STANDARD;
    }
    [...]
}

Varsayılan olarak, bu bir HTTP 302 Redirect göndereceğiz. Bu başlıkları yazma beri herhangi bir çıkış HTTP çıktıya yazılır ise, program başlıkları gönderme duracaktır. Içindeki istekleri ve yanıt bakarak deneyin Firebug.

Diğer durumda, * redirect() yöntemi olmayan varsayılan seçenekleri kullanmayı deneyin. Örneğin, siz deneyebilirsiniz:


$ropts = { 'exit' => true, 'prependBase' => false };
$this->_redirect($config->url->absolute->fb->canvas . '/turn/move-trains-auto', $ropts);

* redirect() yöntemi, code seçeneği için ilginç bir seçenek yoktur, örneğin bir HTTP 301 Moved Permanently kodunu gönderebilir.


$ropts = { 'exit' => true, 'prependBase' => false, 'code' => 301 };
$this->_redirect($config->url->absolute->fb->canvas . '/turn/move-trains-auto', $ropts);