作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了其中一个奇怪的“这曾经可以工作然后停止工作”的问题。
在我的路线文件中,我有
controller :questions do
match 'q/:topic-questions/:tag' => :search
end
q/java-questions/performance
的 URL将路由到
search
与
params[:topic] = java
一起行动和
params[:tag] = performance
match 'q/(:topic)-questions/:tag' => :search
topic
成为可选参数。我认为这意味着它很难分离
:topic-questions
成一个 token ,然后是一个静态字符串。如果有另一种方法可以整齐地分离 token ,那么将它放入
()
?
最佳答案
关于什么:
controller :questions do
match 'q/:topic-:modifier/:tag' => :search
end
params[:topic]
params[:modifier]
params[:tag]
params[:modifier]
一。
关于ruby-on-rails - Rails 路由 : how to separate a token from surrounding static segments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8097804/
我是一名优秀的程序员,十分优秀!