【发布时间】:2013-07-08 09:50:00
【问题描述】:
这是 Cake 2.3 中 FormHelper 的 postLink 方法。
http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#FormHelper::postLink
我想知道我是否可以用它来上传单个文件而不是用它来删除。
【问题讨论】:
标签: cakephp cakephp-2.0 formhelper
这是 Cake 2.3 中 FormHelper 的 postLink 方法。
http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#FormHelper::postLink
我想知道我是否可以用它来上传单个文件而不是用它来删除。
【问题讨论】:
标签: cakephp cakephp-2.0 formhelper
该函数创建了一个看起来像链接的表单。上传文件可以通过appropriate usage of the form helper实现,例如:
echo $this->Form->create('User', array('type' => 'file'));
echo $this->Form->file('avatar');
echo $this->Form->submit();
【讨论】: