【问题标题】:Link to Order Index Rails 4链接到订单索引 Rails 4
【发布时间】:2015-05-28 02:34:38
【问题描述】:

我正在使用带有印象派 gem 的 Rails 4 来获取我的文章的查看次数。

在我的索引页面上,我有一个标记为“最受欢迎”的链接

我还可以访问按浏览次数排序文章的方法:

@articles = Article.order('impressions_count ASC')

当用户点击“最受欢迎的按钮”时,按印象数排序索引的最佳方式是什么?我很难找到这方面的文件。

这是我的articles_controller.rb

class ArticlesController < ApplicationController
  load_and_authorize_resource
  before_action :set_article, only: [:show, :edit, :update, :destroy]

  def index
    if params[:q].present?
       @articles = Article.search(params[:q], misspellings: {edit_distance: 1}, page: params[:page], per_page: 12)
       @search = current_or_guest_user.searches.create!(query: params[:q], searched_at: Time.now)
    else
       @articles = Article.order('impressions_count ASC').page(params[:page]).per(12)
       @search = current_or_guest_user.searches.create!(query: params[:q], searched_at: Time.now)
    end
    if @articles.blank?
       return redirect_to request_path
       @search = current_or_guest_user.searches.create!(query: params[:q], searched_at: Time.now)
    end
    get_query
  end

  def autocomplete
    @articles = Article.search params[:term], autocomplete: true
    render json: @articles
  end

  def search
    @articles = Article.search params[:q], suggest: true, page: params[:page], per_page: 5
    @search = current_or_guest_user.searches.create!(query: params[:q], searched_at: Time.now)
    render 'index'
  end

  def show
    impressionist(@article, nil, { unique: [:session_hash] })
    @skip_error = true
    @subarticles = @article.subarticles.approved.order(:cached_votes_score => :desc)
   if request.path != article_path(@article)
      redirect_to @article, status: :moved_permanently
    else
        respond_to do |format|
        format.html # show.html.erb
        format.json { render json: @article }
      end
    end
  end

  def new
  end

  def edit
  end

  def create
     respond_to do |format|
      if @article.save
        format.html { redirect_to @article, notice: 'Article was successfully created.' }
        format.json { render :show, status: :created, location: @article }
      else
        format.html { render :new }
        format.json { render json: @article.errors, status: :unprocessable_entity }
      end
    end
  end

  def update
    respond_to do |format|
      if @article.update(article_params)
        format.html { redirect_to @article, notice: 'Article was successfully updated.' }
        format.json { render :show, status: :ok, location: @article }
      else
        format.html { render :edit }
        format.json { render json: @article.errors, status: :unprocessable_entity }
      end
    end
  end

  def destroy
    @article.destroy
    respond_to do |format|
      format.html { redirect_to articles_url, notice: 'Article was successfully destroyed.' }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_article
      @article = Article.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def article_params
      params.require(:article).permit(:title, :specific, :category, :aka, :image1, :image2, :video1, :video2)
    end

    def get_query
      @userquery = params[:q]
    end
end

【问题讨论】:

  • 只订购索引是什么意思?
  • 当有人点击“最受欢迎”链接时,我想按印象数排序
  • 只是一篇文章展示页面。 impressionist(@article, nil, { unique: [:session_hash] })这个方法获取文章的浏览量。
  • 向我们展示您的ArticlesController
  • 是的,但我想将其更改为仅在单击“最受欢迎”链接时发生。其他明智的只是显示所有文章。感谢您的帮助。

标签: ruby-on-rails ruby ruby-on-rails-4 impressionist


【解决方案1】:

索引中的第一个 else 子句是这样的:

else
   @articles = Article.order('impressions_count ASC').page(params[:page]).per(12)

这就是您让它们按印象数排序的原因。只需摆脱它以按最新排序返回它们。

else
   @articles = Article.order(created_at: :desc).page(params[:page]).per(12)

然后,您需要设置“最受欢迎”链接以返回按印象数排序的 @articles 变量,就像您在旧代码中所做的那样。

您需要在控制器中执行操作以返回您想要的结果,例如:

将变量添加到白名单:

def article_params
  params.require(:article).permit(:title, :specific, :category, :aka, :image1, :image2, :video1, :video2, :imp_sort)
end

然后在您的 index 操作中,您可以将其添加到:

 def index
if params[:q].present?
   @articles = Article.search(params[:q], misspellings: {edit_distance: 1}, page: params[:page], per_page: 12)
   @search = current_or_guest_user.searches.create!(query: params[:q], searched_at: Time.now)
else
   if article_params[:imp_sort]
     @articles = Article.order('impressions_count ASC').page(params[:page]).per(12)
   else
     @articles = Article.order(created_at: :desc).page(params[:page]).per(12)
   end
   @search = current_or_guest_user.searches.create!(query: params[:q], searched_at: Time.now)
end
if @articles.blank?
   return redirect_to request_path
   @search = current_or_guest_user.searches.create!(query: params[:q], searched_at: Time.now)
end
get_query

结束

在您的index.html.erb 中,您需要让您的链接执行以下操作:

<%= link_to "Sort by Impressions", articles_path(:imp_sort => true) %>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-11-25
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多