Penso che tu abbia ragione sul fatto che controllare che il primo e l'ultimo carattere siano virgolette è probabilmente più semplice. Tuttavia la stessa mangusta non può farlo. Suggerisco di preparare la query in anticipo e anche di scegliere il trova appropriato metodo.
Possiamo anche usare il $regex
operatore per eseguire l'espressione regolare data rispetto alla proprietà 'keyword' di ogni documento nella raccolta.
var userInput = '"Apple"';
var term = userInput.trim();
var caseInsensitive = true; // = some user input?
var isExactTerm = (function() {
var firstChar = term[0];
var lastChar = term[term.length - 1];
return (firstChar === '"' && lastChar === '"');
}();
if(isExactTerm) {
// Remove quotes from the query
term = term.substr(1, str.length - 1);
}
var method = (isExactTerm) ? 'findOne': 'find';
var regexFlags = (caseInsensitive) ? 'i' : '';
var query = (isExactTerm) ? term : {$regex: new RegExp(term, regexFlags)};
Model[method]({
keyword: query
}).exec().then(function(result) {
// do stuff with `result`
}, function(err) {
// handle `err`
});