得到使用次数最多的前几的标签。
getTopTags(topN)
参数
- topN
前几个使用次数最多的。
返回值
使用次数最多的前几的标签的详细信息。
代码例
var node = companyhome.childByNamePath("TAG_SCOPE_FOLDER/TEST_FILE_1.TXT");
if (node){
model.message = "Node found";
var tagScope = node.getTagScope();
if (tagScope){
model.tags = tagScope.tags;
model.topTags = tagScope.getTopTags(4);
}
} else {
model.message = "Node not found!";
}
前面的代码段将返回如下结果:
Node found
Tags:
Tag: 'cool' @ 3 instances
Tag: 'ends' @ 3 instances
Tag: 'browsers' @ 2 instances
Tag: 'code' @ 2 instances
Tag: 'cold' @ 2 instances
Tag: 'first' @ 2 instances
Tag: 'fire' @ 2 instances
Tag: 'fir' @ 2 instances
Tag: 'fun' @ 1 instances
Top tags:
Tag: 'cool' @ 3 instances
Tag: 'ends' @ 3 instances
Tag: 'browsers' @ 2 instances
Tag: 'code' @ 2 instances
文档更新时间: 2019-07-10 23:29 作者:凌云文档