3

我正在尝试添加一个可点击的链接,该链接将使用 has_scope gem 按字母顺序对链接页面进行排序。我究竟会在我的观点中提出什么来完成这项工作?

模型链接.rb

 scope :abc, -> { order("links.title ASC") }


Links_Controller.rb

 has_scope :abc

 def index
    @links = apply_scopes(Link).all
 end


索引.html.erb

<div id="links-wrapper">
    <%= render partial: "shared/link", collection: @links %>
</div>


_link.html.erb

<div class="link">

    <a class="link-title" href="<%= link.url %>" target="_blank"><%= link.title %></a>


    <div class="link-printed-url"><%= link.url %></div>

    <p class="link-description"><%= link.description %></p>

    <div class="link-tags">
        <% link.tags.any? %>
            <% link.tags.each do |tag| %>
                <span class="label-tag">
                    <%= link_to tag_path(tag) do %>
                        #<%= tag.name %>
                    <% end %>
                </span>     
        <% end %>
    </div>


</div>
4

2 回答 2

1

您需要将标题参数传递给范围。

将模型中的范围更改为scope :abc, -> title { order("links.title ASC") }

或者

scope :abc, -> title { order(title: :asc) }

你可以在部分做这样的事情

  <div class="link">
    <a class="link-title" href="<%= link.url %>" target="_blank"><%= link.title %></a>


    <div class="link-printed-url"><%= link.url %></div>

    <p class="link-description"><%= link.description %></p>

  </div>
  <% end %>

  <div class="link-tags">
    <%= link_to 'Order ASC', tag_path(:abc => true) %>
  </div>
于 2015-02-15T21:40:03.570 回答
0

由于 has_scope 使用 url 参数,您需要在 link_to 上添加参数

<%= link_to "title", links_path(abc: true) %>
于 2015-02-14T22:23:00.570 回答