5

我在 magento 模态页面的会话中设置数组变量,并希望在另一个页面中检索,如 getuserdata.php 但不进入另一个页面。我设置变量并进入一页然后完全检索。

我的代码就像..

//第一页代码。

$session = Mage::getSingleton("core/session",  array("name"=>"frontend"));
$fldata = 'work for set data';
$session->setData("free_auth", $fldata);

//另一个页面代码。

session_start();
require_once ("../../app/Mage.php");
umask(0);
Mage::app('default');
$session = Mage::getSingleton("core/session",  array("name"=>"frontend"));
$stl1 = $session->getData("free_auth");

任何人都可以帮助我解决这个问题..

4

1 回答 1

2

如果我们在 Magento 中创建会话,那么我们只能在 Magento 文件中使用该会话,例如在 magento/app 文件夹中。如果要在您创建的外部文件中使用该会话,则必须首先在另一个 Magento 默认文件中获取会话,然后调用 jquery ajax 函数并通过它传递会话变量以将其获取到外部文件中。您还可以在不使用会话的情况下通过 ajax 传递变量。

像这样设置会话数据。

$fldata = 'work for set data';
Mage::getSingleton('core/session')->setMyCustomData($fldata);

并获取这样的数据。

session_start();
$sessionfree = Mage::getSingleton('core/session', array('name' => 'frontend'));
$abcfree = $sessionfree->getMyCustomData();
于 2012-10-05T05:14:10.053 回答