How to add new attribute to ActiveRecord

后端 未结 8 1805
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-20 01:18

After getting all values from model, I want to add another custom attribute to the ActiveRecord class (this attribute is not a column in db) so that I could use it in view, but

8条回答
  •  难免孤独
    2021-02-20 01:35

    If it temporary, you can try this:

    @test.all.map{ |t| t.attributes.merge({ newatt: "added string" }) }

提交回复
热议问题