gpt4 book ai didi

javascript - 如何使用 azure-mobile-apps-js-client 实现搜索

转载 作者:行者123 更新时间:2023-12-03 05:31:08 25 4
gpt4 key购买 nike

我有一个混合 Cordova 应用程序,它使用 javascript azure-mobile-apps-js-client用于与服务器通信。数据也同步到设备上的sqlite DB中。

我需要通过全名来实现对人员实体的搜索。应返回所有与搜索词(包含全名中的词)匹配的人员。类似于 SQL 中的“LIKE”。

我确实读过this文章,但没有找到一种方法来做到这一点。看起来这个客户端只支持 =、>、< 等操作。

这是否意味着我需要从表中检索所有记录并在客户端上过滤它们(这对我来说听起来很奇怪)或者我只是错过了一些东西?

谢谢。

最佳答案

终于找到了一个使用 javascript string.indexOf 函数来做到这一点的选项。

//Declare a query
function queryFunction(term){
return this.FullName.indexOf(term) != -1
}

//Pass it to where function
table
.where(queryFunction, term)
.read()
.then(success, failure);

关于javascript - 如何使用 azure-mobile-apps-js-client 实现搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40936784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com