我正在使用sails.js 和sails-mongo 适配器。假设我有一个模型:
module.exports = {
attributes: {
shema: true
, attributes: {
description: {
type: 'TEXT'
, max: 200
}
, tags: {
type: 'ARRAY'
}
}
}
};
如何在标签数组中进行搜索?