我是解析新手。 我想实现一个搜索栏,我的问题是,当我传递一个字符串时,我不知道如何使查询获取信息。
// search is the string I am looking for
var search= req.body.search;
alert("search is: "+search);
var query = new Parse.Query("Place");
//When I use equalTo the name need to be exactly equal
//in SQL you can use LIKE or %search%
query.equalTo("name", search);
答案 0 :(得分:0)
对于字符串值,您可以在查询中使用matches
方法使用正则表达式约束。
Parse.Query matches( key, regex )
您可以在此处的文档中阅读:https://parse.com/docs/js/api/classes/Parse.Query.html#methods_matches