我有路线:
match "/invite/create/:first_name/:last_name/:email/:phone" => 'invite#create'
当我尝试时:
http://localhost:3000/invite/create/bill/bob/bob@gmail.com/1234567890
我得到一个No route matches [GET] "/invite/create/bill/bob/bob@gmail.com/1234567890"
错误。
我的路线有什么问题?