我在我的应用程序中有一个自定义路由,每次参数是一个数字或一个数字列表时都需要匹配|
这是我的代码:
get '/lists' => 'cidades#list'
get '/list(/:id)' => 'cidades#list', :constraints => { :id => /[0-9|]+/ }
get '/list(/:name)' => 'cidades#list'
我希望完成的是这样的:
/lists => cidades#list
/list/1 => cidades#list & param[:id] = "1"
/list/1|2|3|4 => cidades#list & param[:id] = "1|2|3|4"
/list/1a => cidades#list & param[:name] = "1a"
如果我使用这个正则表达式:/[0-9|]+/
我会1a
变得有效,但我不想要这个。我找到了这个正则表达式:/\A[0-9|]+\Z/
但这给了我这个错误:
ArgumentError (Regexp anchor characters are not allowed in routing requirements: /\A[0-9|]+\Z/):
如何创建仅匹配数字字符串的约束?(只有数字的字符串)