gpt4 book ai didi

ruby - ERB 中 ".each do |x|"的循环 Controller

转载 作者:太空宇宙 更新时间:2023-11-03 17:37:10 25 4
gpt4 key购买 nike

我正在尝试通过应用 .active 类来设置通过 object.each do |x| 命令输出的第一个元素的样式。不过我想不通 - 我该怎么做?

最佳答案

使用each_with_index()。为清楚起见,在下面的非 ERB 示例中显示。

['hello', 'world'].each_with_index do |item, index|
if index == 0
puts "This is the first item"
end

puts item
end

打印出来:

This is the first item
hello
world

关于ruby - ERB 中 ".each do |x|"的循环 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13307419/

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