1

我在 CakePHP 中使用 jquery uploadify,我遇到了 $_SESSION 的问题,因为下面的操作通过 $ this-> request-> params ['named'] ['uid' 接收用户 ID ] 的问题是,使用 uploadify 启用的操作执行了两次,但第二个数据 $ this-> request-> params ['named'] ['uid'] 丢失了。

以下是简化的代码,以便更好地理解。

FilesController.php / index **运行两次

public function index() {
        $id = $this->request->params['named']['uid'];
        $us = $this->User->findById($id)['User'];
        $dir = UPLOAD_DIR . $us['id'] . '/';
        CakeSession::write('Files.atual', $dir);
        $this->set('u', $us);
        //$this->autoRender = false;
}

Views/Elements/up.ctp //启用 Uploadify

<?php $timestamp = time(); ?>
    $(function() {
        $('#file_upload').uploadify({
            'formData'     : {
                'timestamp' : '<?php echo $timestamp; ?>',
                'token'     : '<?php echo md5('unique_salt' . $timestamp); ?>'
            },
            'swf'      : '<?= $this->request->webroot; ?>uploadify.swf',
            'preventCaching' : false,
            'uploader' : '<?= $this->request->webroot; ?>uploadify.php?session_id=<?php echo(session_id()); ?>',
            'buttonClass' : 'button icon-paperclip',
            'buttonText' : 'Enviar Arquivos',
            'onUploadSuccess' : function(file, data, response) {
                $('.files-icons').load('<?= $this->request->webroot; ?>files/reload/<?= $u['id'] ?>');
            }
        });
    });
4

1 回答 1

0

对您的上传操作的双重请求是由 uploadify 的 button_background_url 属性中的错误引起的。您可以设置自己的背景图像,通过在 .uploadify 配置中进行设置来停止对您的操作发出的附加请求:

'button_image_url': '/img/cake.icon.png',

举个例子。您可能希望将其设置为 null 或其他一些背景图像。

于 2013-03-12T11:19:58.907 回答