我们有一个数组,需要检查它的元素。如果元素具有共同特征,则循环继续,否则循环中止。如果循环中止,我该如何发送重定向?
示例代码:
array = [1, 1, 3, 2, 2]
i = 0
while i < array.count - 1
if *check common feature*
*some code*
else
value = 'error'
end
break if (value = 'error')
i += 1
end
答案 0 :(得分:0)
在else
内
redirect_to whatever_path