0

这是 Cake 2.3 中 FormHelper 的 postLink 方法。

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

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

4

1 回答 1

4

该函数创建一个看起来像链接的表单。可以通过适当使用表单助手来实现上传文件,例如:

echo $this->Form->create('User', array('type' => 'file'));
echo $this->Form->file('avatar');
echo $this->Form->submit();
于 2013-07-08T10:03:23.690 回答