gpt4 book ai didi

ruby-on-rails - Rails => 在模型内连接整数和字符串

转载 作者:行者123 更新时间:2023-12-04 06:27:49 24 4
gpt4 key购买 nike

是否可以在模型内连接整数和字符串?像这样的事情:

percent = 50
string = (percent + "%")

尝试此操作时,我收到类型错误:

TypeError (String can't be coerced into Fixnum): app/models/game.rb:124:in `+'

最佳答案

您可以通过不同的方式来做到这一点:

string = "#{number}%" # or number.to_s + "%"
=> "50%"

或者使用number_to_percentage Rails 助手:

string = number_to_percentage(number)

关于ruby-on-rails - Rails => 在模型内连接整数和字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37407631/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com