gpt4 book ai didi

elixir - 如何让 Elixir/Phoenix LiveComponent 向自身而不是其父级发送消息?

转载 作者:行者123 更新时间:2023-12-03 23:40:03 31 4
gpt4 key购买 nike

我正在编写一个 ClockComponent 来了解 Phoenix LiveComponents。我几乎拥有它,但它正在向其父级发送 :tick 消息。我怎样才能让它将该消息发送给自己?我想用 myself()而不是 self()但显然这不是一回事。

defmodule ClockComponent do
use Phoenix.LiveComponent

@impl true
def mount(socket) do
if connected?(socket), do: :timer.send_interval(1000, self(), :tick)
{:ok, assign(socket, date: :calendar.local_time())}
end

def handle_info(:tick, socket) do
{:noreply, assign(socket, date: :calendar.local_time())}
end

@impl true
def render(assigns) do
~L"""
The time is <%= @date |> Timex.to_datetime("America/Denver") |> Timex.format!("{RFC1123}") %>
"""
end
end

最佳答案

我认为你不能以此为基础:https://hexdocs.pm/phoenix_live_view/Phoenix.LiveComponent.html#module-managing-state
组件在 LiveView 进程内运行,但可能有自己的状态和事件处理。
我相信“子组件”和父组件共享相同的过程。

关于elixir - 如何让 Elixir/Phoenix LiveComponent 向自身而不是其父级发送消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66324776/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com