Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
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); }telegram api как преобразовать json в переменные
-
Привет коллеги.
Как преобразовать параметры json в переменные, для дальнейшего использования в скрипте.
Пример того что получаем от telegram{"ok":true,"result":[{"update_id":575719283, "message":{"message_id":32,"from":{"id":570787136,"is_bot":false,"first_name":"test","last_name":"test","username":"test_test","language_code":"ru"},"chat":{"id":570787136,"first_name":"test","last_name":"test","username":"test_test","type":"private"},"date":1523007466,"text":"Haii"}},{"update_id":575719284, "message":{"message_id":33,"from":{"id":570787136,"is_bot":false,"first_name":"test","last_name":"test","username":"test_test","language_code":"ru"},"chat":{"id":570787136,"first_name":"test","last_name":"test","username":"test_test","type":"private"},"date":1523007479,"text":"Testovii text"}}]}В читабельном виде выглядит так:
{ "ok":true, "result": [{ "update_id":575719283, "message": { "message_id":32, "from": { "id":570787136, "is_bot":false, "first_name":"test", "last_name":"test", "username":"test_test", "language_code":"ru" }, "chat": { "id":570787136, "first_name":"test", "last_name":"test", "username":"test_test", "type":"private" }, "date":1523007466, "text":"Haii" } },{ "update_id":575719284, "message": { "message_id":33, "from": { "id":570787136, "is_bot":false, "first_name":"test", "last_name":"test", "username":"test_test", "language_code":"ru" }, "chat": { "id":570787136, "first_name":"test", "last_name":"test", "username":"test_test", "type":"private" }, "date":1523007479, "text":"Testovii text" } }]}Как преобразовать json в нормальный вид, и переменным присвоить значения из этого формате?
-
@neizwestnyi00 в выполнить код переменная=JSON.parse(ПеременаяJSON);
А там уже разбирайте. -
@Denis_krsk , Делаю так -
[[UPDATE_ID]] = JSON.parse([[SAVED_TEXT_JSON]]);Получается
[object Object]И что дальше с ним делать?
-
@neizwestnyi00 Проще всего там же в выполнить код разбирать. На выходе получаются массивы, ассоциативные массивы. Из них брать переменные. Кстати для NotePad есть удобный плагин JsonViewer в нем удобно пути смотреть. Но если вы не знаете основы JS, то лучше сначала почитать.