Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
間にスペースを入れて2つの変数を追加しようとしています:
errors = [[lot_count, '#{attribute}: #{error}' ]]
これを表示すると、次のように表示されます。#{attribute}: #{error}
#{attribute}: #{error}
変数の値が得られない理由はありますか?
Ruby の一重引用符は補間されませんが、二重引用符は次のようになります。
"#{attribute} #{error}"