Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
559 views
in Technique[技术] by (71.8m points)

elixir - How to update the value of nested assigns in LiveView

I’m trying to use nested assigns but cannot find a way to update its values… Imagine I have this:

def mount(socket) do
    socket = assign(socket, state: [value1: "20", value2: "50"])
    {:ok, socket} 
end

How do I update the value here?

def handle_event("dec", _params, socket) do
    socket = assign(socket, state[:value1], "1")
    {:noreply, socket}
end

How do I reference/represent that nested key?

question from:https://stackoverflow.com/questions/65842391/how-to-update-the-value-of-nested-assigns-in-liveview

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Kernel.update_in/3 is your friend here.

state = [value1: "20", value2: "50"]
update_in state, [:value1], & &1 <> "updated"
#? [value1: "20updated", value2: "50"]

Sidenote: this question has nothing to do with .


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...