fetch("https://example.com/user1", {
method: "GET"
}).then(res => {
console.log(res);
fetch("https://example.com/login", {
method: "POST",
body: JSON.stringify({
login: 'login',
password: 'password'
})
}).then(console.log).catch(console.error)
}).catch(console.error)
<input class="set-options" type="radio"></input>
$(".set-options input[type='radio']").change(function () { alert(1); });
$(".set-options input[type='radios']").change(function () { alert(1); });
if array_ids.index(user_id) != None: send_message(user_id, "Вы уже оповестили администратора. Ждите ответа")
if array_ids.index(user_id) == None:
array_ids.append(user_id)
t = Timer(300.0, delete_id(user_id))
t.start()
send_message(user_id, "Администратор оповещён. Ждите ответа")
send_message(441631398, f"@id{user_id} Вам прислали сообщение")
array_ids = [] #вынести эту переменную за команду
def delete_id(userid): # эту функцию тоже
array_ids.pop(array_ids.index(userid))
elif text=='Вызвать администратора':
if array_ids.index(user_id) != None: return send_message(user_id, "Вы уже оповестили администратора. Ждите ответа")
array_ids.append(user_id)
t = Timer(300.0, delete_id(user_id))
t.start()
send_message(user_id, "Администратор оповещён. Ждите ответа")
send_message(441631398, f"@id{user_id} Вам прислали сообщение")