ruby-on-rails – rails从网址中删除控制器路径

我认为我有以下循环

<% @posts.each do |post| %>
     <%= link_to post do %>
           Some html
     <% end %>
<% end %>

上面的代码生成链接为localhost:3000 / posts / sdfsdf-sdfsdf

但我想将链接作为localhost:3000 / sdfsdf-sdfsdf

这是我的路线

resources :posts,except: [:show]

  scope '/' do
    match ':id',to: 'posts#show',via: :get
  end

解决方法

你可以这样做:

#config/routes.rb
resources :posts,path: "" #-> domain.com/this-path-goes-to-posts-show

另外,请确保将其放在路线的底部;因为它会覆盖任何前面的路线.例如,domain.com/users将重定向到posts路径,除非posts路径定义在routes.rb文件底部

friendly_id

为了实现基于slug的路由系统(有效),您最适合使用friendly_id.这允许.find方法查找slug以及扩展模型的id:

#app/models/post.rb
Class Post < ActiveRecord::Base
   extend FriendlyID
   friendly_id :title,use: [:slugged,:finders]
end

这将允许您在控制器中使用以下内容

#app/controllers/posts_controller.rb
Class PostsController < ApplicationController
   def show
       @post = Post.find params[:id] #-> this can be either ID or slug
   end
end

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...