ROR 使用 attachment_fu 上传文件_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > ROR 使用 attachment_fu 上传文件

ROR 使用 attachment_fu 上传文件

 2010/11/17 22:57:03  jn615  http://jn615.javaeye.com  我要评论(0)
  • 摘要:来源:博客园链接http://www.cnblogs.com/yank/archive/2009/11/01/attachment.htmlROR使用attachment_fu上传附件,很方便,但是配置需要研究。http://github.com/technoweenie/attachment_fumigration:classCreateAttachments<ActiveRecord::Migrationdefself.upcreate_table:attachments,
  • 标签:ROR使用attachment_fu上传文件

来源:博客园 链接

http://www.cnblogs.com/yank/archive/2009/11/01/attachment.html

?

?

ROR使用attachment_fu上传附件,很方便,但是配置需要研究

http://github.com/technoweenie/attachment_fu


migration:

class?CreateAttachments?<?ActiveRecord::Migration
??def?self
.up
????create_table?
:attachments,:force?=>?true?do?|t|
??????t
.string?:filename,:default=>""
??????t
.string?:content_type,:defaut=>""
??????t
.integer?:size,:default=>0
??????t
.string?:org_filename,:default=>""

??????t
.timestamps
????end
??end

??def?self
.down
????drop_table?
:attachments
??end
end
  • 相关文章
发表评论
用户名: 匿名