2012-06-27 45 views
6

我想要考慮2個約束的導軌路線。如何才能做到這一點?這兩個約束如何在Rails routes.rb中有多個約束?

match ':id' => 'pages#temp', :constraints => { :uuid => /[A-Za-z\d]([-\w]{,498}[A-Za-z\d])?/ } 
root :to => 'pages#temp', :constraints => lambda {|r| r.env["warden"].authenticate? } 

我如何有一個像這樣的路線與兩個約束到位?謝謝

match ':id' => 'pages#temp', :constraints => 

回答