如何使用 sunspot / solr 将 mongomapper 1 索引为多个,作为其提交的 objectId 而不是整数?
我有一个 mongmapper 产品和一个类别模型,一个类别有很多产品。
我正在尝试使用这样的类别来使用方面。 (似乎在AR中工作)
searchable do
text :name
integer :category_id, :references => ::Category
end
问题是category_id是一个ObjectId而不是整数,所以我得到:
未定义的方法`to_i' for BSON::ObjectId(....尝试索引产品时出错。
以前有人这样做过吗?
有什么想法吗这样做?
谢谢 里克
I have a mongomapper product and a category model and a category has many products.
I am trying to use facets using the categories like this. (seems to work in AR)
searchable do
text :name
integer :category_id, :references => ::Category
end
Problem is category_id is an ObjectId not integer so i get :
undefined method `to_i' for BSON::ObjectId(.... error when trying to index products.
Any one done this before ?
Any ideas how to do this ?
Thanks
rick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论