Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
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); }Ошибка в ноде
-
@aster said in Ошибка в ноде:
Почему БАС печатает пустые скобочки в ноде?
var re = new RegExp('find', 'gi'); console.log(re) [543462491] [19:52:51] Поток №1 : {}а что он должен печатать?
-
@aster said in Ошибка в ноде:
@Fox said in Ошибка в ноде:
а что он должен печатать?
Браузер печатает содержимое переменной
re:

и для чего вам отображение объекта регекспа? Вы ведь знаете, что пытаетесь вывести в консоль то?
var re = new RegExp('find', 'gi'); console.log(re.dotAll) console.log(re.flags) console.log(re.global) console.log(re.ignoreCase)
-
@aster said in Ошибка в ноде:
@Fox Хотел проверить какая получается регулярка. Просто она у меня чуть сложнее, чем в этом примере и почему-то работает не так как задумано. А тут даже
console.logне работает...Консоль браузера отличается от косноли в BAS, если посмотрите текстовый файл (да, код ноды сохраняется в текстовом файле в директории BAS) то увидите переопределение функции console.log в log() BAS. А нода в свою очередь передаёт данные BAS через json строку и если я правильно помню, то всё, что не получается упаковать в JSON.stringify() возвращается пустым