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.
私は " 、などfile.json.erbのような値を作成したい...20 mg""30 mg"
file.json.erb
20 mg"
"30 mg"
みたいなこと書いたけど間違ってた
<%=(rand() * 50).to_i %> + " mg"
必要はありません+。文字列を直接構築できます。これを試して:
+
"<%=(rand() * 50).to_i %> mg"
ほぼ正しい、試してみてください
<%= (rand() * 50).to_i.to_s + " mg" %>