我有两个表:-
国家 客户[有许多列,例如:姓名,地址,城市,邮政编码,电子邮件等] 客户表的国家/地区列为[国家/地区指针]。
现在我想要的是:我有一个搜索表单,如果有人在搜索框中输入“ aus”,然后单击“搜索”按钮,我想显示所有匹配的记录,我想在“名称,电子邮件,地址,城市和国家/地区名称[指针]“
因此,如果某人的名字为Austin或国家/地区名称“ Australia”将作为搜索结果,那么目前,我在名称,电子邮件上使用“ contains”,并且工作正常。
我尝试对国家/地区进行搜索,但未成功搜索,请有人帮忙应用。
这是我当前正在运行的代码[没有国家/地区搜索],我正在使用云功能。
`var customerName = new Parse.Query("customer");
var customerEmail = new Parse.Query("customer");
var customerAddress = new Parse.Query("customer");
customerName.contains('name','aus');
customerEmail.contains('email','aus');
customerAddress.contains('address','aus');
var serviceQuery = new Parse.Query.or(
customerName,
customerEmail,
customerAddress
// country
);
.............` 谢谢
答案 0 :(得分:1)
尝试这样的事情:
var customerName = new Parse.Query('customer');
var customerEmail = new Parse.Query('customer');
var customerAddress = new Parse.Query('customer');
customerName.contains('name','aus');
customerEmail.contains('email','aus');
customerAddress.contains('address','aus');
var countryQuery = new Parse.Query('country');
countryQuery.contains('name','aus');
var customerCountry = new Parse.Query('customer');
customerCountry.matchesQuery('country', countryQuery);
var serviceQuery = new Parse.Query.or(
customerName,
customerEmail,
customerAddress,
customerCountry
);
您可以使用全文搜索来代替搜索每个客户的字段: https://docs.parseplatform.org/js/guide/#full-text-search
答案 1 :(得分:0)
一种解决方案是在对象的云fullTextSearch
上计算一个beforeSave
字段。最好的方法是将此字符串存储为小写且不带变音符号。如果您在搜索时执行相同的操作,则会得到更好的结果(以使André
与andre
或AnDrÉ
相匹配)。
这是我以前这样做的助手:
/**
* Generates fulltextsearch for any Parse.Object. It's the concatenation of the value
* of all fields in propertiesToAdd, separated by a whitespace and lowercased.
* Often used in beforeSave :)
* @param propertiesToAdd the list of the object properties names that we want to handle in fulltextsearch
* @param newObject the new version of the object
*/
static generateFulltextSearch(propertiesToAdd, newObject): string {
let result = '';
propertiesToAdd.forEach(property => {
let value = newObject.get(property);
if (value) {
result += DiacriticRemove(value) + ' ';
}
});
return result.trim().toLocaleLowerCase();
}
DiacriticRemove
只是对Diacritics package的调用。
在您的beforeSave
(使用云代码)中,您只需致电:
myCustomer("myFullTextField", generateFulltextSearch(["name", "email", "address", "country", "anyotherField"], myCustomer))
然后,当您进行搜索时:
var customer = new Parse.Query("customer");
// Don't forget to lowercase and remove diacritics from your searched string.
customer.contains('myFullTextField','aus');
还有voilà:)