3

我的 Post 模型有一个名为“已发布”的布尔值:

架构.rb: *

  create_table "posts", :force => true do |t|
    t.string   "title"
    t.string   "content"
    t.integer  "user_id"
    t.datetime "created_at",                            :null => false
    t.datetime "updated_at",                            :null => false
    t.boolean  "published",          :default => false
  end

如果为真,则帖子被视为已发布,并出现在用户个人资料的已发布部分,如果为假,则显示在草稿部分(对不起,但我不确定如何处理代码重复)。

post_controller.rb:

class PostsController < ApplicationController
  before_filter :authenticate_user!, :except => [:show, :index]

  def index
    @posts = Post.all
  end

ETC...

users_controller.rb:

class UsersController < ApplicationController
  def index
    @users = User.all
  end

  def show
    @user = User.find(params[:id])
    @posts = @user.posts
  end

ETC...

_shared/posts.thml:

   <h2>Published</h2>
    <% @posts.each do |post| %>
      <% if post.published? %>
        <div id="post-<%= post.id %>" class="post">
          <%= image_tag post.image.url(:medium) %>
          <h2 class="post-title"><%= link_to post.title, post %></h2>
          <%= link_to post.user.email, post.user %>
          <p><%= post.content %></p>
        </div>
      <% end %>
    <% end %>

    <h2>Draft</h2>
    <% @posts.each do |post| %>
      <% if not post.published? %>
        <div id="post-<%= post.id %>" class="post">
          <%= image_tag post.image.url(:medium) %>
          <h2 class="post-title"><%= link_to post.title, post %></h2>
          <%= link_to post.user.email, post.user %>
          <p><%= post.content %></p>
        </div>
      <% end %>
    <% end %>

例子:

users.html.erb:

<h2>User Show</h2>
<%= image_tag @user.avatar.url(:medium) %>
<span>Email: <%= @user.email %></span><br />
<span>ID: <%= @user.id %></span><br />

<%= render 'shared/posts' %>

index.html.erb

<%= render 'shared/posts' %>

(我知道这些观点有点混乱。我想稍后我会在每个帖子草稿旁边显示一个文字,上面写着“草稿”)。

问题是帖子将按created_at日期排序。我希望它们按published_at帖子索引页面中的日期排序(我认为这更有意义)。

我知道如何published_at t.datetime通过迁移添加字段。但我不确定该published_at领域的逻辑使用什么代码。

有什么建议么?

(顺便说一句,哪个听起来更正确?' published_at'还是' published_on'?)

4

2 回答 2

4

添加您的表格published_at(日期时间)字段。当你发布然后更新 published_at 字段,然后当你获取数据时使用order('published_at Desc')

@posts =  @users.posts.order('published_at DESC')

控制器中的逻辑

if params[:post][:published] == true # whatever you got in controller rather than params[:post][:published]
   @post.published_at = Time.now
else
  @post.published_at = ""
end

这意味着,当published值为 true 时,上面的代码在您的控制器中执行,并在您的 published_at 字段中添加值 Time.now,如果 published 的值为 false,则上面的代码不执行,因此published_at字段具有空白值。

或者,通过使用类似的模型

before_save :published_post

def published_post
  if self.published == true
   self.published_at = Time.now
  end
end
于 2012-10-20T05:02:32.757 回答
1

您应该能够调整控制器:

def show
  @user      = User.find(params[:id])
  posts      = @user.posts.order('published_at').group_by(&:published)
  @published = posts[true]
  @drafts    = posts[false]
end

然后您可以使用@publishedand@drafts来生成您的列表。如果您首先想要最近发布的,那么:

posts = @user.posts.order('published_at desc').group_by(&:published)
于 2012-10-20T04:59:39.070 回答