博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
arailsdemo x
阅读量:5919 次
发布时间:2019-06-19

本文共 626 字,大约阅读时间需要 2 分钟。

  hot3.png

app/models/post.rb

class Post < ActiveRecord::Base  ...  def post(position)    increment = position == :previous ? -1 : 1    Post.find_by_sequence(self.sequence + increment)  endend

app/helpers/post_helpers.rb

module PostsHelper  def post_link(position)    link_to("#{position.to_s.capitalize} Post", post_url(@post.post(position).sequence)) if @post.post(position)  endend

app/views/posts/show.html.haml

- title "\##{@post.sequence} #{@post.title}"...-# edited 12/19/10.postNav  .prev= post_link(:previous)  .next= post_link(:next)%br%br%p= link_to 'View All Posts', posts_path...

转载于:https://my.oschina.net/kelby/blog/193114

你可能感兴趣的文章