我有这样的结构:
public class CertController extends CController
{
public function actionCreateAfterLabel(Label $labelInputs)
{
}
}
public class LabelController extends CController
{
public function actionCreate(Label $label)
{
$this->redirect(array("Cert/CreateAfterLabel", 'labelInputs' => $label));
}
}
这不起作用,因为重定向仅适用于 GET 参数,即带有字符串的键/值。我怎样才能通过传递对象来完成这项工作?