我有以下路线:
get 'users/:user_id/:name', to: 'profiles#show',
:constraints => { :name => /[a-zA-Z0-9_]+$/ }, as: 'user_profile'
这会产生错误:
Regexp anchor characters are not allowed in routing requirements: /[a-zA-Z0-9_]+$/
所以我知道 ^ 字符是不允许的,但不确定是什么字符产生了这个特定的路由错误。