Dexieで部分一致で検索する方法。
// 記述例
async function search_todo(word) {
// Dexieの標準検索には前方一致しかないため、filterを使用して絞り込みをかける。
const todos = await db.table.filter(function (todo) {
// javascriptの部分一致検索方法で判定してやる。
return todo.title.indexOf(word) > -1;
}).toArray();
return await todos;
}
参照元:
https://github.com/dfahlander/Dexie.js/issues/146
以上