dongtu0088 2011-08-17 18:20
浏览 42
已采纳

CakePHP - 如何包含与模型无关的表单字段

Assuming I have a view in CakePHP which uses the Form Helper to create the form fields like so:

echo $this->Form->create();
echo $this->Form->input('id');
echo $this->Form->input('headline');
echo $this->Form->input('paragraph');
echo $this->Form->end(__('Submit', true));

...and assuming once the form is submitted to the controller I then do a save() to update the record...

How would I include another input field in the form that is NOT associated to the model in question and which I want to put in there to capture another piece of data that I intend to process separately in the controller action?

(To give some background: the additional field I want to add is actually an image filename. My images table is a completely separate entity, and because it therefore has no association with the model I'm save()ing, I believe I need to capture the information in an additional field on the form, then process it 'manually' in the controller action - i.e., by importing the images model and creating a new record in it based on the image upload filename I've added to the form.)

Hope that makes sense!

Thanks.

  • 写回答

1条回答 默认 最新

  • duanfen9983 2011-08-17 18:22
    关注
    echo $this->Form->input('file_image', array('type'=>'file'));
    

    Then in your controller see what is returned and use that file and upload it to your server.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?