Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Sails.js 和/或 Waterline 是否可以进行全文搜索?
我知道 PostgreSQL 支持全文搜索,但据我所知,用于 Waterline 的 PostgreSQL 适配器似乎不支持该功能。
contains使用 Waterline 的辅助方法可以进行有效的全文搜索吗?
contains
您可能可以执行以下操作:
Model.find({ class: { 'like': '%history%' }})
根据文档,这类似于:
Model.find({ class: { 'contains': 'history' }})
以代码方式举例说明您正在尝试的内容对您有好处。