0

OpenShift PAAS 上的 CakePHP 2.x

我正在尝试获取有关文件的所有详细信息

  • 姓名
  • 类型
  • 临时名称

一些结果:

print_r($this->data);
Array ( [Import] => Array ( [file] => PCI_card_KCF_04252013.csv ) )

和 ..

print_r($this->request->params);
Array ( [plugin] => [controller] => products [action] => import [named] => Array ( ) [pass] => Array ( ) )

我在 ProductsController 中有以下内容:

public function import()    {
    //print_r($this->request);
    print_r($this->data);
}

我在 index.ctp 中有以下内容:

<?php echo $this->Form->create('Import',
        array(
            'class' => 'form-horizontal',
            'style' => false,
            'url' => array ('controller' => 'products', 'action' => 'import')
            )); ?>
        <div class="control-group">
                <?php echo $this->Form->input('file',
                    array(
                    'type' => 'file',
                    'label' => false,
                    'div' => 'controls',
                    )); ?>
        </div><!-- end of control group -->
    <div class="control-group">
            <?php echo $this->Form->submit(_('Import'),
                array(
                'type' => 'submit',
                'class' => 'btn btn-primary btn-large',
                'label' => false,
                'style' => false,
                'div' => 'controls'
                )); ?>
    </div>
<?php echo $this->Form->end(); ?>
4

1 回答 1

1
<?php echo $this->Form->create('Import',
        array(
            'class' => 'form-horizontal',
            'style' => false,
            'url' => array ('controller' => 'products', 'action' => 'import'),
            'type'=>'file'
            )); ?>
于 2013-10-16T13:05:54.177 回答