16

因此,在为我的 rails 应用程序搜索标记 gem 之后,我发现了令人惊叹的可标记gem。安装它并玩弄我发现它把所有的标签都保存在一个标签数据库中,它只保存没有上下文的 Tag.name,而不是上下文保存在 :through 关系数据库( taggings )中。对于大多数目的,我可以看到这是完美的。除了我的应用程序,我希望能够为用户提供基于预先存在的标签进行标记的能力(例如,不允许他们创建自己的标签)并且作为可标记的行为没有搜索所有标签的能力在一个内置的上下文中(例如,如果我要呈现标签 db 的自动完成,我将包含我的应用程序中的所有标签,这不是我想要的)

下面的方法是我刚刚充实的,看看它是否会起作用(它确实起作用),但我想知道我是否遗漏了acts-as-taggable 的东西。我的意思是我看不到任何提供这种方法的地方?

<% ActsAsTaggableOn::Tagging.find_all_by_context("tags").each do |tagging| %>
  <%= tagging.tag %>
<% end %>

如果例如作为可标记不这样做,这是最好的方法吗?感觉有点不高效,我会更好地执行自定义 SQL 查询而不是通过acts-as-taggable路由吗?

如果它有帮助的话,我的日志的尾巴:

Started GET "/users" for 127.0.0.1 at 2011-01-04 14:46:20 +0000
Processing by UsersController#index as HTML
SQL (0.5ms)   SELECT name
FROM sqlite_master
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
User Load (0.1ms)  SELECT "users".* FROM "users"
ActsAsTaggableOn::Tagging Load (0.5ms)  SELECT "taggings".* FROM "taggings" WHERE ("taggings"."context" = 'languages')
ActsAsTaggableOn::Tag Load (0.1ms)  SELECT "tags".* FROM "tags" WHERE ("tags"."id" = 2) LIMIT 1
Rendered users/index.html.erb within layouts/application (10.4ms)
4

2 回答 2

16

您还可以使用如下语句:

# Returns all the tags for the specified model/context with a count >= 1
@tags = YourModel.tag_counts_on(**context**)

添加限价和订单:

# Get the top 5 tags by count
@tags = YourModel.tag_counts_on(**context**, :limit => 5, :order => "count desc")

count使用从返回的标签的属性访问计数tag_counts_on

tag.count
于 2011-02-01T09:07:22.250 回答
0

我相信有办法: User.tag_counts_on(:tags)

=> [#<ActsAsTaggableOn::Tag id: 1, name: "foo">,
#<ActsAsTaggableOn::Tag id: 2, name: "bar">,
#<ActsAsTaggableOn::Tag id: 3, name: "sushi">,
#<ActsAsTaggableOn::Tag id: 4, name: "pizza">]
于 2014-03-24T16:20:01.877 回答