我有一個包含30個屬性的模型。但這些屬性可以分爲2組。查找模型中的相關屬性
比如我有:
string:title
string:text
...
和
string:title_old
string:text_old
...
我希望能夠:當我在同一時間檢查title
屬性檢查title_old
屬性。我可以執行一個循環,如果我做了15個字符串數組或我應該寫硬編碼的if語句
最終目標:
[
{
:name => :title,
:y => 1 (constant),
:color=> red, (if title_old == "something" color = red else color = green)
},
{
:name=> :text,
:y => 1 (constant)
:color => red (if text_old == "something" color = red else color = green)
},
.... (all other 13 attributes)
]
最終目標是什麼? – kain
編輯了問題 – glarkou
你需要保存這些東西或者只是得到類似json/hash的表示? – kain