有一个代码
file_paths = {nature:[], nature_thumb:[]}
运行良好的 Elsif 版本:
Find.find('public/uploads') do |path|
if path =~ /.*nature.*\.(jpg|png|gif)$/ and path !~ /.*nature\/thumb.*\.(jpg|png|gif)$/
file_paths[:nature] << path
elsif
path =~ /.*nature\/thumb.*\.(jpg|png|gif)$/
file_paths[:nature_thumb] << path
#etc
end
end
案例版本导致问题
Find.find('public/uploads') do |path|
case
when path =~ /.*nature.*\.(jpg|png|gif)$/, path !~ /.*nature\/thumb.*\.(jpg|png|gif)$/
file_paths[:nature] << path
when path =~ /.*nature\/thumb.*\.(jpg|png|gif)$/
file_paths[:nature_thumb] << path
# etc
end
end
用 '&&' 代替逗号会导致错误。逗号工作错误。如何避免这种情况?