我知道之前已经问过:1,2。但我正在阅读文件,看到它可能是有可能的。
我需要在Google自定义搜索引擎中为查询添加多项优化。因此,如果我的CSE上有多个标签,我想以某种方式查询它们的子集。假设我有三个标签:news
,articles
和stories
。我希望能够在earth
或news
中包含的所有网页中搜索stories
之类的查询。
只添加一个标签,这样的查询工作正常:earth more:news
。但不喜欢我添加第二个标签。
根据google's documentation,您可以在多个优化之间使用OR
。但它对我不起作用。我正在使用javascript and the RESTful APIs,但我尝试了很多组合:
earth more:news more:stories
earth more:news OR more:stories
earth [more:news OR more:stories]
earth more:news,stories
任何人都有任何想法如何运作?
答案 0 :(得分:0)
似乎AND
和OR
选项仅适用于页面地图数据和元标记,而且它们不适用于目录结构和标签。