如何使用FormHelper postLink在Cake 2.3中上传单个文件

时间:2013-07-08 09:50:01

标签: cakephp cakephp-2.0 formhelper

这是Cake 2.3中FormHelper的postLink方法。

http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#FormHelper::postLink

我想知道我是否可以使用它上传单个文件而不是将其用于删除。

1 个答案:

答案 0 :(得分:4)

该函数创建一个看起来像链接的表单。使用appropriate usage of the form helper可以实现上传文件,例如:

echo $this->Form->create('User', array('type' => 'file'));
echo $this->Form->file('avatar');
echo $this->Form->submit();