Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }Удаление дубликатов в списке.
-
Может я не правильно понимаю в обозначениях.. Создаю список, в Значение 1 вставляю переменную с массивом, затем идёт Удаление дубликатов, но на выходе как повторялись строки в массиве, так и повторяются.
-
@DrPrime теперь ругается.
[14:35:12] Поток №1 : TypeError: Result of expression '(VAR_RESULT).filter' [undefined] is not a function. Номер строки:2 Во время выполнения скрипта { VAR_RESULT = (function(){var seen = {}; return (VAR_RESULT).filter(function(item) { return seen.hasOwnProperty(item) ? false : (seen[item] = true); });})(); section_start("test", 12,function(){ })} -
@out
VAR_VSE = (VAR_SAT).replace(/маска/g, 'REPLACE INTO table VALUES (\u0027$1\u0027, \u0027$2\u0027, NOW());\n')
section_end()!section_start("", 6760)!
VAR_VSE = (function(){var seen = {}; return (VAR_VSE).filter(function(item) { return seen.hasOwnProperty(item) ? false : (seen[item] = true); });})();
section_end()!Replace разбивает строку на массив через \n, или это не массив? Потому что, если создать список, вставить в Значение 1 переменную VSE, а уже удалить дубликаты из списка, то скрипт проходит без ошибок, ни чего не удаляет, но проходит без ошибок ))
-
@out Спасибо, по мучался немного, заменил в replace \n на _ , затем разделил строку с разделителем _ и удаление дубликатов прошло отлично.