作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 routes.rb 中:
resources :posts do
get "test"
end
/post/:id/...
.但是,我也得到了
/post/:post_id/test
.
最佳答案
指定 :on => :member,否则它充当嵌套资源。
resources :posts do
get 'test', :on => :member
end
关于ruby-on-rails - Rails 路由 - :resource_id vs :id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6479370/
在我的 routes.rb 中: resources :posts do get "test" end 这会产生通常的 RESTful 路由 /post/:id/... .但是,我也得到了 /
当文件被重命名/修改/传递时,我们可以依赖于 resource_id 是全局唯一的吗? 最佳答案 是的,无论对文件的元数据和/或内容进行了何种更改,Google 云端硬盘文件的 ID 都将保持不变。
我是一名优秀的程序员,十分优秀!