ruby-on-rails – 带有字段的Rails ElasticSearch模型

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 带有字段的Rails ElasticSearch模型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 elasticsearch-railsmongoid
我有以下简单的字段映射:
"title": {
              "type": "string","fields": {
                 "raw": {
                    "type": "string","index": "not_analyzed"
                 }
              }
           }

我的模型看起来像这样:

class ArticlesEvent
include Mongoid::Document
include Elasticsearch::Model

field :title,type: String

attr_accessible :title

def as_indexed_json(options={})
  as_json(except: [:id,:_id])
end

任何人都可以举例说明如何使用title.raw字段定义rails模型,以及如何访问该字段?由于多字段已被弃用,因此很难找到使用rails和mongoid的工作示例.

谢谢

解决方法

您应该能够在模型中使用以下属性定义来实现此目的:
attribute :title,String,mapping: { 
    fields: {
       raw:  { type: 'string',index: 'not_analyzed' }
    } 
}
原文链接:https://www.f2er.com/ruby/270083.html

猜你在找的Ruby相关文章