文章列表
方法一
使用 file-column 和rmagick 上传
安装插件 Ruby script/plugin install http://opensvn.csie.org/rails_file_column/plugins/file_column/trunk
做法
.建立一个存放路径的model,在数据库中建立Entry数据库
并生成相应的scaffold:
ruby script/generate scaffold Entry upload
4.修改model,并限制只能图片上传
代码
class Entry < ActiveRecord::Base
v ...
class Mugshot < ActiveRecord::Base
has_attachment :content_type => :image,
:storage => :file_system,
:processor => :MiniMagick,
:max_size => 10.megabytes,
:resize_to => '320*200',
:thumbnails => { :thumb => [50, 50] },
:path_prefix => 'pub ...
- 2009-02-22 14:17
- 浏览 635
- 评论(0)