country
属性のデフォルト値はnilです。
国の表では、一部のレコードにがimage_url
あり、残りのレコードのcountry
属性はnilです。
だから私はこれをヘルパーでコーディングしました
def image(user)
if user.country.image_url
image_tag "flags/#{user.country.image_url}.png"
end
end
image_url
ただし、 nilの場合はエラーを返します
Something went wrong
どうすれば修正できますか?