不确定这里的问题是什么,但我的 routes.rb 中有一条基本线:
resource :videos
但我没有看到所有的路径。即:
GET /videos/:id
运行“rake routes”时,我只看到以下内容:
videos POST /videos(.:format) videos#create
new_videos GET /videos/new(.:format) videos#new
edit_videos GET /videos/edit(.:format) videos#edit
GET /videos(.:format) videos#show
PUT /videos(.:format) videos#update
DELETE /videos(.:format) videos#destroy
我错过了什么?谢谢!