如何加密来自VIEW
in的 post 方法数据YII
?这也是编写这样一个函数的好方法吗?VIEW
它应该加密发送到控制器并在其中解密的POST 数据。
'buttons' => array(
'Edit' =>array(
//'label' => 'Edit',
'url' => 'Yii::app()->createUrl("Controller/Action",array("doc_id"=>$data->id))',
),
当按下按钮时,我想加密"doc_id"
并发送到控制器以进行进一步的操作,再次解密加密的数据。URL 看起来像这样..
projectName/ControllerName/actionName/a2ewe34r44rf454r
但我不知道在哪里写函数。