django_base/static/admin/simpleui-x/automatic/segment.js
2022-05-06 16:37:35 +08:00

56 lines
1.2 KiB
JavaScript

if (!window.dicts) {
window.dicts = {}
}
function Segment() {
//初始化词库
var mappers = {}
for (key in dicts) {
var array = dicts[key];
array.map((value, index) => {
mappers[value.toUpperCase()] = key;
});
}
this.getMappers = function () {
return mappers;
}
this.cut = function (sentence) {
var start = 0, end = sentence.length - 1;
while (start != end) {
var str = [];
for (var i = start; i <= end; i++) {
var s = sentence.substring(i, i + 1);
str.push(s);
// 如果在字典中,则添加到分词结果集
var val = mappers[str.join('').toUpperCase().replace(/ /g, '')];
if (val) {
return val;
}
}
start++;
}
}
}
var segment = new Segment();
function getIcon(name, icon) {
if(!name){
return;
}
var value = 'far fa-circle';
if (icon) {
//有默认图标的
if (icon != value) {
return icon;
}
}
return segment.cut(name) || value;
}