0

ユーザーが記事をドラフトに設定できる文字列フィールドを持つarticlesというモデルがあります。下書きが選択され、ユーザーが投稿を更新すると、ユーザーが公開オプションを選択したかのように記事編集ページに戻り、ユーザーが記事のインデックスページにリダイレクトされるようにします。

問題は、ドラフトオプションが選択されている場合、記事を更新して投稿にリダイレクトできないことです。私はこれに間違った方法でアプローチしていますか?

移行ファイル

def change
    add_column :articles, :status, :string, default: 'Draft'
  end

articles.rb

scope :submitted, lambda { where('status = ?', 2) }
scope :draft, lambda{ where('status = ?', 1) } 

def is_draft?
  self.draft
end

記事コントローラー

  def update
      case @article.status
        when 1 
          @article.status = 'Draft'
        else 2 
          @article.status = 'Published'
      end

      if @article.status == 1 
        @article = article.find(params[:id])
        flash[:notice] = "Successfully Updated" if @article.update_attributes(params[:article])
        respond_with(@article, :location => edit_article_path)
      else
        @article = article.find(params[:id])
        flash[:notice] = "Successfully Updated" if @article.update_attributes(params[:article])
        respond_with(@article, :location => articles_path)
      end
  end
4

1 に答える 1

1

本当に 1/2 値で作業したい場合

モデル:

STATUS_VALUES = {1 => "Draft", 2 => "Published"}

scope :submitted, lambda { where('status = ?', STATUS_VALUES[2]) }
scope :draft, lambda{ where('status = ?', STATUS_VALUES[1]) } 

attr_accessible :_status

after_initialize do
  self.draft! if self.new_record?  # be draft by default
end

def draft!
  self.status = STATUS_VALUES[1]
end

def published!
  self.status = STATUS_VALUES[2]
end

def _status
  STATUS_VALUES.invert(status)
end

def _status=(value)
  case value
  when 1, "1" then self.draft!
  when 2, "2" then self.published!
  else self.draft!
  end
end

def draft?
  self.status == STATUS_VALUES[1]
end

def published?
  self.status == STATUS_VALUES[2]
end

コントローラ:

def update
  @article = article.find(params[:id])
  if @article.update_attributes(params[:article])
    flash[:notice] = "Successfully Updated" 
    if @article.draft?
      respond_with(@article, :location => edit_article_path)
    else
      respond_with(@article, :location => articles_path)
    end
  else
    render :action => :edit
  end
end

意見:

<%= f.check_box(:_status, "Published", 2, 1) %>
于 2013-01-16T06:33:25.997 に答える