0

我正在尝试为 GSA 搜索创建查询:

该查询假设将所有结果排除在元标记内的某些文本,例如:

inmeta:Education -first and -second and -courses...

但没有运气。有人知道正确的语法是什么吗?

4

1 回答 1

2

我之前使用过等于条件,查询看起来像这样 -

(inmeta:education=first OR inmeta:education=second)

如果您的结果不能包含元标记Education不等于该值的所有页面,first则使用 -

inmeta:Education-first

对于多个值,您可以使用 OR 条件 -

(inmeta:Education-first OR inmeta:Education-second)

您可以在此处找到更多信息 - https://developers.google.com/search-appliance/documentation/46/xml_reference#request_query_terms

希望这对您有所帮助。

于 2013-02-14T13:32:07.550 回答