4

我正在尝试使用 Symfony 1.4 框架将变量存储在 cookie 中。这是我的 sfAction 派生类的片段:

class productActions extends sfActions
{
    public function preExecute()
    {
        $this->no_registration_form = true;
        $request = $this->getRequest();

        $cookie_value = $request->getCookie('pcatid');
        $this->prod_category_id = (!isset($cookie_value)) ? 0 : $cookie_value;

        $cookie_value = $request->getCookie('pitid');
        $this->product_item_id = (!isset($cookie_value)) ? 0 : $cookie_value;

        $cookie_value = $request->getCookie('pcatnm');
        $this->product_category_name = (!isset($cookie_value)) ? null : base64_decode ($cookie_value);

        $cookie_value = $request->getCookie('pipnm');
        $this->product_info_partial_name = (!isset($cookie_value)) ? null : $cookie_value;

        $cookie_value = $request->getCookie('protl');
        $this->title = (!isset($cookie_value)) ? null : base64_decode ($cookie_value);
    }

    public function postExecute()
    {
        $expire = time()+2592000;
        $path = '/products/';
        $response = $this->getResponse();

        $value = $this->prod_category_id;
        if (isset($value))
            $response->setCookie('pcatid', $value, $expire, $path);

        $value = $this->product_item_id;
        if (isset($value))
            $response->setCookie('pitid', $value, $expire, $path);

        $value = base64_encode($this->product_category_name);
        if (isset($value))
            $response->setCookie('pcatnm', $value, $expire, $path);

        $value = $this->product_info_partial_name;
        if (isset($value))
            $response->setCookie('pipnm', $value, $expire, $path);

        $value = base64_encode($this->title);
        if (isset($value))
            $response->setCookie('protl', $value, $expire, $path);        
    }

    public function executeIndex(sfWebRequest $request)
    {
        // uses defaults or settings stored in cookies
    }

    ... // other functions that set the required instance member fields
}

我已经在调试会话中单步执行了代码,我可以看到 cookie 值正在sfWebResponse变量中进行整理——但是,没有设置任何 cookie——这在preExecute()函数中得到了证明——检索到的所有 cookie 的值都为 null。

为什么会这样?

4

2 回答 2

4

我在一个新的 symfony 项目上做了一个简单的测试。

我已经复制/粘贴了您的preExecute&postExecute并添加了一个带有空模板的简单操作:

public function executeIndex(sfWebRequest $request)
{
  var_dump($_COOKIE);

  $this->prod_category_id          = 123;
  $this->product_item_id           = 456;
  $this->product_category_name     = 789;
  $this->product_info_partial_name = 159;
  $this->title                     = 753;
}

我已将此行更改$path = '/products/';$path = '/';.

在第一次尝试时,我没有任何 cookie,所以我什么都没有:

array
  empty

刷新时,cookie 被定义,我可以看到它们:

array
  'symfony' => string 'c04khrspp5fmg3sh797uq9c9s1' (length=26)
  'pcatid' => string '123' (length=3)
  'pitid' => string '456' (length=3)
  'pcatnm' => string 'Nzg5' (length=4)
  'pipnm' => string '159' (length=3)
  'protl' => string 'NzUz' (length=4)

您的代码可能有什么问题,您将 cookie 路径设置为/products/. 这意味着,您只有在您处于打开状态时才能访问这些 cookie http://exemple.com/products/...

如果您尝试在 上访问这些 cookie http://exemple.com/,您将一无所获。

如果这不能解决您的问题,您能否粘贴一个操作示例,从定义的 uri(至少是域之后的部分)出现问题的地方。

于 2013-02-12T13:50:14.060 回答
1

当您将 $path 传递给方法时,您只能在从同一 URL 访问 cookie 时使用 cookie。

如果您想从所有站点访问 cookie,请不要在路径中传递任何内容。

$response = $this->getResponse();
$response->setCookie('stack', 'This cookie is readable from all site for the next 60 segs.', time() + 60);
$response->setCookie('overflow', 'This cookie is readable from mypage for the next 60 segs.', time() + 60, 'http://mysite.com/mypage');
于 2013-02-12T15:42:35.930 回答