if match = request.path.match(/\A\/(?<slug>(?!admin|assets)\w+)/) match[:slug] end
有没有办法使用安全导航操作符(在2.3.0中引入),以避免这种情况有条件?
request.path.match(/\A\/(?<slug>(?!admin|assets)\w+)/)&.[](:slug)