在 google CSE 中搜索多个标签
Searching multiple labels in google CSE
我知道之前有人问过:1, 2。但我正在阅读文档并看到它可能是可能的。
我需要向 google 自定义搜索引擎中的查询添加多个优化。因此,如果我的 CSE 上有多个标签,我想以某种方式查询其中的一个子集。假设我有三个标签:news
、articles
和 stories
。我希望能够在 news
或 stories
.
中包含的所有页面中搜索类似 earth
的查询
对于只添加一个标签,这样的查询工作正常:earth more:news
。但是当我添加第二个标签时不一样。
根据 google's documentation, you can use OR
between multiple refinements. But It does not work for me. I'm using 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
有人知道它是如何工作的吗?
似乎 AND
和 OR
选项仅适用于页面映射数据和元标记,它们不适用于目录结构和标签。
我知道之前有人问过:1, 2。但我正在阅读文档并看到它可能是可能的。
我需要向 google 自定义搜索引擎中的查询添加多个优化。因此,如果我的 CSE 上有多个标签,我想以某种方式查询其中的一个子集。假设我有三个标签:news
、articles
和 stories
。我希望能够在 news
或 stories
.
earth
的查询
对于只添加一个标签,这样的查询工作正常:earth more:news
。但是当我添加第二个标签时不一样。
根据 google's documentation, you can use OR
between multiple refinements. But It does not work for me. I'm using 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
有人知道它是如何工作的吗?
似乎 AND
和 OR
选项仅适用于页面映射数据和元标记,它们不适用于目录结构和标签。