Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to made upload files with jshelper.

In my view:

<?php echo $this->Form->create('Form', array(
    'inputDefaults' => array(
    'format' => array('before', 'error', 'label', 'between', 'input', 'after'),),
    'enctype' => 'multipart/form-data'
)); 
echo $this->Form->input('Form.file', array('type' => 'file', 'id'=>'file'));
$this->Js->get('#file')->event(
    'update',
    $this->Js->request(
        array('controller' => 'ControllerForm','action' => 'actionForm'),
        array(
        'async' => true, 
        'method' => 'post', 
        'dataExpression'=>true,
        'data'=> $this->Js->serializeForm(array(
            'isForm' => false,
            'inline' => true,
            ))
        )
));
echo $this->Js->writeBuffer();
echo $this->Form->end(); 
?>

In my controller:

public function actionForm(){
    debugger::dump($this->data);
}

But debugger::dump output empty array.

share|improve this question
Debugging thoughts: Are you getting any JS errors in your browser console? What does CakePHP's generated JS look like? Is the request actually being sent? What does the request body contain? – Ben Graham Nov 8 '12 at 5:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.