5

我最近开始使用 taffydb。假设我有这个作为我的数据

db= TAFFY([
{OrderNo:'prod1',range: 3,description:'one two'},
{OrderNo:'prod2',range: 2,description:'one two three'},
{OrderNo:'prod3',range: 2,description:'one three two'},
{OrderNo:'prod4',range: 6,description:'one two four three'},
{OrderNo:'prod5',range: 5,description:'three'},...

如果我想编写一个查询来查找所有带有“一二”和“三”的记录,我会做类似的事情

db({description:{likenocase:"one two"}},{description:{likenocase:"three"}}).get()

这将返回产品 2 和 4。不幸的是,我无法弄清楚如何使用具有未知数量要搜索的变量的动态查询来做到这一点。我这样做是为了让用户搜索他们自己提供的单词。

有人有什么想法吗?

4

3 回答 3

0

作为先驱,这不会是您问题的最佳答案。但它会起作用。:)

因此,用户可以选择使用“未知数量的变量”搜索数据库。让我们添加最大数量的变量——也许是 10 个?

现在我们在一个数组中捕获所有用户的搜索变量:

// Create a dynamic array
var userSearchVars = [];

// Fill the array from 10 HTML input type=text fields
// You can fill your array however you fancy. This is just one example!
$("#myForm input[type=text]").each(function() {
   userSearchVars.push( $(this).val());
}

// Note: by default an empty input will return the empty string: ""

使用您的代码片段,只需使用数组查询数据库:

db(
    {description:{likenocase:userSearchVars[0]}},
    {description:{likenocase:userSearchVars[1]}},
    {description:{likenocase:userSearchVars[2]}},
    {description:{likenocase:userSearchVars[3]}},
    {description:{likenocase:userSearchVars[4]}},
    {description:{likenocase:userSearchVars[5]}},
    {description:{likenocase:userSearchVars[6]}},
    {description:{likenocase:userSearchVars[7]}},
    {description:{likenocase:userSearchVars[8]}},
    {description:{likenocase:userSearchVars[9]}}
).get()
于 2014-03-31T19:55:52.243 回答
0

你可以这样做

let items = [];
items.push({description:{likenocase:"one two"}});
items.push({description:{likenocase:"three"}});

db(...items).get()
于 2022-01-10T12:44:22.833 回答
0

调整@Jacob-IT 的答案,使其具有动态性。今晚第一次使用 Taffy,发现您可以将对象数组作为查询参数传递。

// Create a dynamic array
var userSearchVars = [];

// Fill the array from 10 HTML input type=text fields
// You can fill your array however you fancy. This is just one example!
$("#myForm input[type=text]").each(function() {
// This is my edit - push the whole query on to the array.
   userSearchVars.push({description:{likenocase: $(this).val() }});
}
// Then pass the whole query array in...
db( userSearchVars ).get() 

测试了上述内容 - 它对我有用。

于 2016-12-31T00:21:16.150 回答