学习链接:http://rubyer.me/blog/583/ RESTful风格的路由动词默认有7个(分别为:index, show, create, new, edit, update, destroy). 有时我们需要自定义路由,这时就要用到:on参数.:on参数有三种取值,分别为collection,member,new. 如果想添加一个member方式的路由,可以这样: resources :photos do member do get 'preview' end end 将会添加一…
Need to add image attachments to a model? See how with paperclip in this episode. 在命令行输入: rails g paperclip product photo rake db:migrate 注:product是你要添加属性的models中的.rb文件名,photo是要插入的图片在数据表中的属性名 配置models/product.rb has_attached_file :photo, :styles => {…
Paperclip -- 上传中文命名图片 使用Paperclip和ImageMagick插件来处理图片的时候,上传非中文命名的图片时,只要把配置写好就没问题 if you need to add image attachments to a model? See how with paperclip in this episode 创建model方法可以借鉴 :http://www.cnblogs.com/lmei/p/3231268.html 在model中进行配置 # 简单例子…
在route中进行修改,添加下面代码 namespace :mycontroller do get 'mymethod' , :on=> :member end end 注: :on => :member照写,不是变量来的... 这样就可以使用mymethod_mycontroller_path.over~~ @_@!!…