Display IDs in your URLs can be terrible and wasteful for SEO. In this blog entry, I will demonstrate to you how you can utilize slugs to make your URLs more relevant to the page content. In the first place, we will utilize an implicit arrangement (superseding the to_param strategy) to change the URLs and a while later, we will utilize a gem called friendly_id to produce slugs and keep up a past filled with these slugs. So that search engines index your web pages.
For example: http://www.exaple.com/blogs/1 till http://www.exaple.com/blogs/blog-name
Här skapar jag ett prov Räls5 app med inläggsmodell för att illustrera exakt hur det kommer att fungera med de vackra webbadresserna.
skenor g ställningspost title:string publicerad:boolean
springa skenor db:migrera
och skapa några exempelinlägg (http://localhost:3000/posts/new)
app/models/post.rb
def to_param title.parameterize end
All the links will be changed to pretty URLs once you add the above method to your model. Please check on index page where it lists all the posts. However, when you click on that it will show you error page.
Post.find method cannot find the record with id which we are passing in URL. We need to create slugs for the above posts in our db for that model.
Let’s add migration file for the slug
rails g migration AddSlugToPosts slug:string
Öppna den ovan nämnda migreringsfilen och lägg till uniq index till den sulg. Slug måste vara unik.
class AddSlugToPosts < ActiveRecord::Migration[5.0] def change add_column :posts, :slug, :string add_index :posts, :slug, unique: true end end
springa db:migrera
Now, we have to change our show action db query to find_by instead of find method. Because we need to fetch the results based on slug.
Change our set_post method to
def set_post Post.find_by_slug(params[:id]) slut
Nu fungerar det som förväntat med de vackra webbadresserna. Vad händer om två poster har samma URL eftersom båda dessa poster har samma namn. Eftersom .find_by alltid hämtar den första posten. För att lösa detta, innan vi sparar slug, kan vi kombinera post-id med slug så som det nämns nedan:
def add_slug "#{id}-#{title.parameterize}" slut
So, it will generate like “1-blog-name”. We have a gem called friendly_gem to simply take care of all the above-mentioned scenarios.
Feel free to remove the above mentione code from the sample app because everything is managed by the gem.
Friendly_id pärla(Rails 5)
Add the latest gem from rubygem web to the gemfile and run bundle
gem 'friendly_id', '~> 5.1'
rails genererar friendly_id
Kommandot ovan genererar en initialiseringsfil och en migreringsfil.
kör db:migrate
Skapa några poster och ändra vår set_post-metod till det sätt som nämns nedan. Alla gamla poster måste återskapas, om du har några.
def set_post Post.friendly.find("Joe Schmoe".parameterize) slut
app/models/post.rb
utöka FriendlyId friendly_id :slug_candidates, använd: [:slugged, :finders, :history] def slug_candidates [ :title, [:title, :id] ] slut
Lägg till slug-attribut till Post-modellen
skenor g AddSlugToPosts slug:string
add_column :posts, :slug, :string
add_index :posts, :slug, unikt: sant
Uppdaterar inläggets rubrik
Slug uppdateras automatiskt när du uppdaterar title-attributet. Men det är inte en bra praxis att uppdatera sniglarna för ofta. Applikationen kan skapa fel när du klickar på någon av de bokmärkta webbadresserna eftersom någon kan ha gamla bokmärken. Vi måste förhindra detta genom att lägga till historiksymbol till användningsalternativet i din Post-modell.
def slug_candidates [ :titel, [:titel, :id] ] slut
slug_candidates feature was added in friendlyId 5. It allows us to tell the friendly id gem, what needs to be done in case of duplicate slugs.
The code mentioned above advises FriendlyId that it needs to utilize the slug_candidates technique to make the slug uniq. It will attempt the rundown right from the beginning to the end, so in the case above, it will attempt to produce the slug first utilizing the title, and afterwards, if a post by that title already exists, it will attempt to fix the ID again.
Slugs are the primary things read by search engines. That ought to, as of now, give you an idea on how essential they are. To utilize a slug, first add the slug alternative to the friendly_id assistant in the Post Model. relaterade inlägg