Zend Sessions问题(初学者)

时间:2009-06-01 18:52:18

标签: zend-framework session zend-view zend-session

我正在教自己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]:第一个参数应该是一个有效的回调,在C:\ xampp \ htdocs \ BC中给出'__PHP_Incomplete_Class :: tabbedbox'第341行上的\ library \ Zend \ View \ Abstract.php

我复制了Zendcasts.com视频几乎一行,但它仍然没有用。好像我的会话被摧毁了什么。我会永远感激那些能告诉我发生了什么事的人。

1 个答案:

答案 0 :(得分:2)

当您在会话中存储对象时,您实际上存储了序列化表示。发生了__PHP_Incomplete_Class :: tabbedbox,因为在后续请求中,PHP忘记了App_View_Helper_Tabbedbox是什么。

解决方案:确保在调用Zend_Session :: start()之前包含App_View_Helper_Tabbedbox类文件。

而且,最好的方法是将它放在应用程序的开头:

require_once 'Zend/Loader.php';
Zend_Loader::registerAutoload();