这是Cake 2.3中FormHelper的postLink方法。
http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#FormHelper::postLink
我想知道我是否可以使用它上传单个文件而不是将其用于删除。
答案 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();