我在模型中有几个回形针附件。我想将它的名称作为方法的参数传递,然后将其设置为nil。
class Campaign < ActiveRecord::Base
has_attached_file :header_image
has_attached_file :footer_image
end
class CampaignsController < ApplicationController
def remove_image(image_name)
@campaign.image_name = nil # <- I want to do something like this
end
end
如何做这样的事情?还有更好的方法吗?