我試圖在軌道4軌道4 - 方法來檢查是否所有的屬性都爲真
我想在一個模型編寫一個方法來檢查是否所有的屬性都是真實的應用程序。
我想:
def ready_to_go
if
[ payment == true,
&& terms == true
&& identification == true
&& key_org == true
&& key_business == true
&& docs == true
&& funding == true
&& contract == true
&& governance == true
&& internal == true
&& preferences == true
&& address == true
&& interest == true ]
end
end
任何人都可以看看有什麼不對的?
定義錯誤,你的意思是說它可以更簡潔嗎?或者它不工作?我不明白爲什麼你有數組語法'['和']'或者爲什麼它在'if'中沒有任何內容。如果你只想返回true或false,那麼除去if和數組語法 –
,而不是在模型'self.attributes'中嘗試像這樣獲得該模型的所有屬性。 –