drjyvoi734793 2016-07-17 07:54
浏览 39
已采纳

Yii2。 会议和表格

I am trying to set a $form object (from ActiveForm) in session:

$fofArgs = [
           'form' => $form,
        ];
 Yii::$app->session->set('fofArgs', $fofArgs);

But When I call in an action:

var_dump(Yii::$app->session->get('fofArgs'));

It prints NULL. My guess is that is related to closures, since I tried to serialize $form and I got an error "Closures can not be serialized".

Any ideas?

This is a question after I thought it was an error with pJax: Yii2. Pjax and Session

UPDATE

Please test doing

Yii::$app->session->set('formtest', $form)

in one controller/action and then

var_dump(Yii::$app->session->get('formtest')); 

in a different one, if you do it in the same it seems it works.

  • 写回答

1条回答 默认 最新

  • dsfew215211 2016-07-19 05:53
    关注

    The issues was that sessions are internally serialized in Yii, so it is not possible to save an object with closures.

    Everyday we learn something new.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?