match '/:question_id', :to => 'welcome#dashboard', :via => [:get], constraint: { question_id: /\d+/ }
我不知道为什么这个路由规则匹配像
这样的路径本地主机/资产
因为我将数字约束添加到仅匹配的数字。
答案 0 :(得分:1)
选项为contstraints
。
match '/:question_id', :to => 'welcome#dashboard', :via => [:get], constraints: { question_id: /\d+/ }