ruby – 如何在ERB中将整数连接到字符串?

前端之家收集整理的这篇文章主要介绍了ruby – 如何在ERB中将整数连接到字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果item_counter = 213,那么我想将item_id设置为“item213”.看似简单但是:
<% item_id = "item" + item_counter %>

导致错误:无法将Fixnum转换为String

<% item_id = "item" + item_counter.chr %>

输出一个奇怪的字符:item

<% item_id = "item#item_counter" %>

被理解为item#item_counter

在ERB(Ruby on rails 3)中将整数连接到字符串的正确方法是什么?

解决方法

to_s是您正在寻找的方法
<% item_id = "item" + item_counter.to_s %>

您还可以使用字符串插值:

<% item_id = "item#{item_counter}" %>
原文链接:https://www.f2er.com/ruby/267686.html

猜你在找的Ruby相关文章