获取 LiveView 中的当前路径

Getting the current path in a LiveView

在正常路线中:

get /index, MyController, :index

我可以简单地从 Plug.Conn 的 path_info 函数中获取路线。

但是,如果我有实时路线,我该如何检索当前路径?

live /index, IndexLive

您可以使用 handle_params callback 获取当前 uri,它在挂载之后和渲​​染之前调用。