Я учу себя Zend am и у меня возникла проблема с использованием моего сеанса для вызова действия View Helper.
Мой контроллер:
<?php
class SessionController extends Zend_Controller_Action
{
protected $session;
public function init() //Like a constructor
{
$this->_helper->viewRenderer->setNoRender(); // Will not automatically go to views/Session
$this->_helper->getHelper('layout')->disableLayout(); // Will not load the layout
}
public function preDispatch() //Invokes code before rendering. Good for sessions/cookies etc.
{
$this->session = new Zend_Session_Namespace(); //Create session
if(!$this->session->__isset('view'))
{
$this->session->view = $this->view; //if the session doesn't exist, make it's view default
}
}
public function printthingAction()
{
echo $this->session->view->tabbedbox($this->getRequest()->getParam('textme'));
}
}
?>
Помощник по моему мнению
<?php
class App_View_Helper_Tabbedbox extends Zend_View_Helper_Abstract
{
public $wordsauce = "";
public function tabbedbox($message = "")
{
$this->wordsauce .= $message;
return '<p>' . $this->wordsauce . "</p>";
}
}
?>
Мой взгляд:
<p>I GOT TO THE INDEX VIEW</p>
<input id='textme' type='input'/>
<input id='theButton' type='submit'/>
<div id="putstuffin"></div>
<script type="text/javascript">
$(function()
{
$("#theButton").click(function()
{
$.post(
"session/printthing",
{'textme' : $("#textme").val()},
function(response)
{
$("#putstuffin").append(response);
});
});
});
</script>
В первый раз, когда я нажимаю на кнопку, она работает и добавляет мое слово так, как должно. Впрочем, каждый раз после этого выдается следующее сообщение об ошибке:
Предупреждение: call_user_func_array () [function.call-user-func-array]: Ожидается, что первый аргумент будет допустимым обратным вызовом, '__PHP_Incomplete_Class :: tabbedbox' задано в C: \ xampp \ htdocs \ BC \ library \ Zend \ View \ Abstract.php в строке 341
Я скопировал видео с Zendcasts.com почти строка за строкой, и она все еще не работает. Кажется, моя сессия разрушается или что-то в этом роде. Я был бы всегда благодарен любому, кто мог бы рассказать мне, что происходит.