如何在 cake php 的组件中使用 Set 函数,尤其是在 cake 版本 1.3 中?
class DevicesComponent extends Object
{
function startup($controller)
{
$this->controller = $controller;
}
function push()
{
$this->set('data', $data);
$this->controller->set('data', $data);
}
}
我收到以下错误致命错误:调用未定义的方法 DevicesComponent::set() 。