google cse-呈现搜索结果

发布于 2024-10-11 15:39:53 字数 414 浏览 6 评论 0原文

我在网站上使用 Google CSE,并且希望搜索结果的显示方式与标准方法不同。我发现了这个:

http://code.google.com/apis/customsearch /docs/snippets.html

我对如何根据自己的喜好设置结果样式的步骤有点困惑。我知道我必须首先在页面中创建结构化数据(即页面地图)。

第二步是什么意思

“在自定义搜索引擎的搜索结果中获取结构化数据。 自定义搜索服务器可以以 XML 或 JSON 格式返回搜索结果以及结构化数据。 “

对于第三步,我是否只需复制自定义搜索元素中提供的代码?

提前致谢

I'm using Google CSE on my website and I want to have the search results display differently than the standard method. I've found this:

http://code.google.com/apis/customsearch/docs/snippets.html

I'm a little confused on the steps on how to style the results to my liking. I know that I have to create the structured data in my pages first (ie Pagemaps).

What does the second step mean though

"Fetch that structured data in the search results for your Custom Search Engine.
The Custom Search server can return the search results, along with the structured data, in XML or JSON format. "

And for the third step, do I just copy the code provided in the Custom Search Element?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻之岛 2024-10-18 15:39:53

“在自定义搜索引擎的搜索结果中获取结构化数据。自定义搜索服务器可以 XML 或 JSON 格式返回搜索结果以及结构化数据。”

我想您不需要自己获取它们索引就是这个意思。您可以强制 Google 重新索引您的网站或直接通过其服务上传页面地图: https://developers.google.com/custom-search/docs/structed_data#pagemaphttp

之后,您只需从 JSON url 请求数据:

https://www.google.com/cse?cx=[CSEID]&q=animal&output=xml&sort=myprivate12345-document-rating&pgmpk=myprivate12345

第三步,我是否只需复制自定义搜索元素中提供的代码?

如果您计划使用 Javascript,您最好以 JSON 格式请求结果。之后它就是代码中的一个对象,您可以对其进行样式设计或用它做其他事情。

"Fetch that structured data in the search results for your Custom Search Engine. The Custom Search server can return the search results, along with the structured data, in XML or JSON format. "

You don't need to fetch them yourself, I guess Indexing is meant with that. You can force Google to re-index your sites or upload a Pagemap directly through their service: https://developers.google.com/custom-search/docs/structured_data#pagemaphttp

After that you just request data from the JSON url:

https://www.google.com/cse?cx=[CSEID]&q=animal&output=xml&sort=myprivate12345-document-rating&pgmpk=myprivate12345

And for the third step, do I just copy the code provided in the Custom Search Element?

If you plan to use Javascript you best request the results in JSON. After that it is an Object in your code and you can style the hell out of it or do other things with it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文