Virtual attributes in rails 4

这一生的挚爱 提交于 2019-12-04 11:12:49

问题


How can I use virtual attributes(getter, setter) in rails 4, as 'attr_accessible' removed.

I am getting issue, here

  def tags_list
    @tags = self.tags.collect(&:name).join(', ')
  end

I can reach above method, but not able to reach setter below, when trying to update/create.

  def tags_list=(tags)
    @tags = tags
  end

回答1:


Using virtual attributes in Rails 4 pretty much the same as with attr_accessible. You just have to add your virtual attribute to the permitted params in your controller (instead of attr_accessible), then add the getter and setter methods as usual in your model.

# your_controller.rb
private

def your_model_params
  params.require(:your_model_name).permit(:tags_list)
end


来源:https://stackoverflow.com/questions/16109118/virtual-attributes-in-rails-4

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!