我是黄瓜的新手,我想问一下如何将这段代码变干(不包含错误):
when /^the user page$/
users_path
when /^the review page$/
reviews_path
我尝试使用正则表达式
when /^the (.+) page$/
$1.to_s+'s_path'
但显然这是错误的。提前致谢!
解决方案(基于aledalgrande的回答):
when /^the (.+) page$/
send("#{$1}s_path")