作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个返回帖子列表的 API (localhost:3000/api/v1/posts):
{
"tags": [
{
"id": 1,
"name": "Tag 1"
},
{
"id": 2,
"name": "Tag 2"
},
…
],
"posts": [
{
"id": 1,
"title": "Post 1",
"body": "Lorem ipsum dolor sit amet.",
"tag_ids": [
1
]
},
{
"id": 2,
"title": "Post 2",
"body": "Lorem ipsum dolor sit amet.",
"tag_ids": [
2
]
},
…
]
}
{
"tags": [
{
"id": 1,
"name": "Tag 1"
}
],
"posts": [
{
"id": 1,
"title": "Post 1",
"body": "Lorem ipsum dolor sit amet.",
"tag_ids": [
1
]
}
]
}
by_tag_id
范围在我的模型中,因为作为可标记的文档只解释了
how to find objects基于它们的标签名称(使用
tagged_with()
方法)。
最佳答案
对于那些感兴趣的人,我解决了这样的问题……这是我的 Post 模型:
class Post < ActiveRecord::Base
attr_accessible :title, :body, :tag_list
# Alias for acts_as_taggable_on :tags
acts_as_taggable
# Named scope which returns posts whose tags have a specific ID
scope :tagged_with_id, lambda { |tag_id| joins(:taggings).where(:taggings => {:tag_id => tag_id}) }
end
class PostsController < ApplicationController
has_scope :tagged_with_id
def index
@posts = apply_scopes(Post).all
render :json => @posts
end
end
关于ruby-on-rails - 如何在 has_scope 中使用acts-as-taggable-on?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16020250/
我是一名优秀的程序员,十分优秀!