【发布时间】:2011-11-15 06:57:35
【问题描述】:
我正在使用以下过程将数据设置为 another_view 操作。但我无法获取发送数据。
$this->autoRender = false;
$dis = new Dispatcher();
$dis->dispatch(
array("controller" => "users", "action" => "another_view"),
array("data" => $user)
);
如何从another_view 获取$user 数据?
请帮忙,谢谢。
【问题讨论】:
标签: cakephp