AF
Size: a a a
AF
ŹR
П
П
МБ
defp handleEvents(updates) do
Enum.map(
updates,
fn
%Nadia.Model.Update{message: nil, callback_query: msg} -> msg
%Nadia.Model.Update{message: msg, callback_query: nil} -> msg
msg -> IO.inspect(msg)
end
)
|> Enum.filter(fn msg -> msg != nil end)
|> Enum.each(&sendMsg/1)
%Nadia.Model.Update{update_id: lastId} = List.last(updates)
cycle(lastId + 1)
end
DR
DR
acc ++ list
- они добавляют новый элемент в конце.DR
DR
DR
AF
m
ŹR
ŹR
ŹR
МБ
ŹR
iex(4)>
16:48:53.059 [debug] Response body is:
[%{"channel_post" => %{"chat" => %{"id" => -1001431072811, "title" => "Общий", "type" => "channel"}, "date" => 1550846934, "message_id" => 399, "text" => "Dddd"}, "update_id" => 462851018}]
%{
"channel_post" => %{
"chat" => %{
"id" => -1001431072811,
"title" => "Общий",
"type" => "channel"
},
"date" => 1550846934,
"message_id" => 399,
"text" => "Dddd"
},
"update_id" => 462851018
}
ŹR
МБ