前言
在一些文章类程序中,我们直接对文章内容检索的话,数据量大,速度较慢,我们可以在保存的时候获取文章的摘要,方便后续检索。
根据字数获取
这种方式可以作为文章概要。
不过滤
1 | function getSummaryByContent(className,maxLength){ |
排除某些标签
排除代码标签
1 | function getSummaryExcludeTag(className,maxLength){ |
排除某些样式
1 | function getSummaryExcludeClass(className,maxLength){ |
根据标题获取
这种方式可以作为检索关键字使用。
1 | function getSummaryByTitle(className,maxLength){ |
打印
1 | let showDom = document.querySelector(".post-body"); |
获取高频词
只对英文有效
1 | function getHighFrequencyWords(text, threshold) { |
中文高频词需要引用中文分词的库。