作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用以下功能将事件从 liveView 服务器发送到客户端:
def handle_event("test", _, socket) do
{:noreply, push_event(socket, "testEvent", %{coins: 23, user: "user"})}
end
这在 liveview 文档中的解释非常相似。 https://hexdocs.pm/phoenix_live_view/js-interop.html但我收到此错误消息:
(CompileError) undefined function push_event/3
Stacktrace:
│ (elixir 1.10.4) src/elixir_locals.erl:114: anonymous fn/3 in :elixir_locals.ensure_no_undefined_local/3
│ (stdlib 3.8) erl_eval.erl:680: :erl_eval.do_apply/6
我错过了一些导入吗?或者我做错了什么?
最佳答案
我认为问题出在我的实时取景版本上。我必须升级:
{:phoenix_live_view, "~> 0.13.0"},
至:
{:phoenix_live_view, "~> 0.14.4"},
关于elixir - 为什么 Phoenix LiveView 函数 `push_event` 未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63747351/
我想使用以下功能将事件从 liveView 服务器发送到客户端: def handle_event("test", _, socket) do {:noreply, push_event(
我想使用以下功能将事件从 liveView 服务器发送到客户端: def handle_event("test", _, socket) do {:noreply, push_event(
我是一名优秀的程序员,十分优秀!