gpt4 book ai didi

elixir - 在 Phoenix LiveView 中渲染不同的实时模板名称

转载 作者:行者123 更新时间:2023-12-04 09:44:04 26 4
gpt4 key购买 nike

在常规 Controller / View 中,假设我有 AppWeb.ItemViewAppWeb.ItemController。假设我有两个不同的索引,:index:index_funky。如果我想为 :index_funky View 渲染 index.html.eex,我可以在 AppWeb.ItemView 中创建一个带有 head 的渲染函数render("index_funky.html", assigns) 并在其中执行 render("index.html", assigns)。这很好用:我会使用 AppWeb.ItemController.index 中的模板从 AppWeb.ItemController.index_funky 获取数据。

我怎样才能对 LiveView 做同样的事情?如果我有 AppWeb.ItemLive.IndexAppWeb.ItemLive.IndexFunky,我如何为 AppWeb 呈现 index.html.leex .ItemLive.IndexFunky?

最佳答案

不确定您背后的原因,但我鼓励您查看 handle_params如果它对您的情况有帮助。

现在,对于您的情况,您可以像这样委托(delegate)给现有 View

defmodule AppWeb.ItemLive.IndexFunky do
use AppWeb, :live_view

def render(assigns) do
Phoenix.View.render(AppWeb.ItemLive.Index, "index.html", assigns)
end
end

Documentation

关于elixir - 在 Phoenix LiveView 中渲染不同的实时模板名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62199231/

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