7

我是新来的轨道。我想为 page_entries_info 显示我的自定义消息。我已经通过以下链接,但不能理解太多。谁能详细解释一下。

我如何指定自定义措辞在一个将分页视图助手中

4

2 回答 2

8

这是默认加载的,取自项目 wiki

en:
  will_paginate:
    page_entries_info:
      single_page:
        zero:  "No %{model} found"
        one:   "Displaying 1 %{model}"
        other: "Displaying all %{count} %{model}"
      single_page_html:
        zero:  "No %{model} found"
        one:   "Displaying <b>1</b> %{model}"
        other: "Displaying <b>all&nbsp;%{count}</b> %{model}"

      multi_page: "Displaying %{model} %{from} - %{to} of %{count} in total"
      multi_page_html: "Displaying %{model} <b>%{from}&nbsp;-&nbsp;%{to}</b> of <b>%{count}</b> in total"

您需要更改multi_page_htmland multi_page,最后 2 个条目。

在您的en.yml文件(或任何文件)中放置如下内容:

en:
  will_paginate:
    line_item:
      page_entries_info:
        multi_page: "Displaying %{from} - %{to} of %{count} of %{model}"        
        multi_page_html: "Displaying <b>%{from}&nbsp;-&nbsp;%{to}</b> of <b>%{count}</b> of %{model}"

如果您对 yml 文件rails 有困难,i18n 指南有点高级,但提供了有关如何使用 yml 文件的很好的信息 - 只需向下滚动一点 :)。

我希望它有所帮助。

于 2012-08-01T11:38:48.453 回答
8

另一种选择是您可以在您的page_entries_info()方法中定义您的方法ApplicationHelper 并像往常一样使用它。如果您知道不需要覆盖边缘情况(如我的情况),这将为您提供更大的灵活性,甚至可以更加清洁和高效。您可以在此处参考原始方法定义并查看您需要实现的所有内容。以下代码将运行您的大部分问题!

def page_entries_info(collection, options = {})
  entry_name = options[:entry_name] || (collection.empty?? 'item' :
      collection.first.class.name.split('::').last.titleize)
  if collection.total_pages < 2
    case collection.size
    when 0; "No #{entry_name.pluralize} found"
    else; "Displaying all #{entry_name.pluralize}"
    end
  else
    %{Displaying %d - %d of %d #{entry_name.pluralize}} % [
      collection.offset + 1,
      collection.offset + collection.length,
      collection.total_entries
    ]
  end
end
于 2012-09-16T18:12:47.427 回答