在正常路线中:
get /index, MyController, :index
Plug.Conn
我可以简单地从's path_info 函数中获取路线。
但是,如果我有实时路线,如何检索当前路径?
live /index, IndexLive
在正常路线中:
get /index, MyController, :index
Plug.Conn
我可以简单地从's path_info 函数中获取路线。
但是,如果我有实时路线,如何检索当前路径?
live /index, IndexLive
You can get the current uri using handle_params callback which is called after mount and before render.