简介
现在,所有人都知道搜索引擎的重要性。然而,只有很少的人知道如何显示其整体效果。在这里,我们将介绍一个 npm 包——js-seopreview。这个 npm 包使您可以在搜索引擎结果页面中轻松地显示网站内容的外观,让人们在尝试搜索之前更容易地了解网站内容。
安装
使用 npm 安装:
npm install js-seopreview --save
用法
您可以像下面的示例代码一样在脚本中使用 js-seopreview。
const seopreview = require('js-seopreview'); seopreview('SEO Search Preview', 'http://example.com', 'Here is an example of what a search preview may look like on Google or Bing etc. This text is limited to 155 characters and should be clear, concise and descriptive to entice people to click on your website in the search results. 如果有中文描叙的话最好.', function(err, data) { console.log(data); });
这个例子将输出像这样的数据:
{ "html": "<div class=\"seopreview\"><div class=\"seopreview__title\"><a href=\"http://example.com\" target=\"_blank\">SEO Search Preview</a></div><div class=\"seopreview__description\">Here is an example of what a search preview may look like on Google or Bing etc. This text is limited to 155 characters and should be clear, concise and descriptive to entice people to click on your website in the search results. 如果有中文描叙的话最好.</div><div class=\"seopreview__url\">http://example.com</div></div>" }
您可以使用 data.html
作为您搜索预览的 HTML。为了更新样式和 HTML,您可以修改以下 CSS 类:
-- -------------------- ---- ------- ----------- - -------- ----- ----------------- -------- ------- --- ----- ----- -------- ----- - ------------------ - ------------ ---- ---------- ----- ------------ ---- -------------- ---- - ------------------------ - ---------- ----- ------------ ---- ------ ----- - ---------------- - ---------- ----- ----------- ---- ------ ----- -
结论
如果您一直在寻找一种方法来向人们展示有关您的网站的信息,js-seopreview 是不错的选择。它易于使用,只需几行代码即可创建漂亮的搜索预览。同时,它具有深度和学习指导意义,让您了解如何显示搜索结果页面中网站的外观。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/6005707881e8991b448e7e6d