扩展 hello_chat:如何模拟会话范围的变量

发布于 2024-12-10 04:18:51 字数 298 浏览 1 评论 0原文

我扩展了 Opa 书第 1 章中的 hello_chat 来熟悉 Opa。这是我到目前为止所做的:pastebin.com 上的扩展 hello_chat

问题:
当用户发送消息时,我想在同一用户的视图中显示“YOU:blah blah blah”,在其他用户的视图中显示“USERNAME:blah blah blah”。但我想不出办法来做到这一点。

我很感激任何提示/帮助。蒂亚,

--
巴赫曼

I'm extending hello_chat from Opa book chapter 1 to familiarise myself with Opa. Here's what I've done so far: extended hello_chat on pastebin.com.

The problem:
When a user sends a message I want to show "YOU: blah blah blah" in the same user's view and "USERNAME: blah blah blah" in other users' views. But I can't figure out a way to do so.

I'd appreciate any hint/help. TIA,

--
Bahman

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何以心动 2024-12-17 04:18:51

您的方法不起作用,因为当用户在房间中时,DOM 中不再存在 #user 元素(它在 join_room 中被覆盖)。

为什么不扩展 user_update 并添加一个参数,即正在执行更新的用户名?即,current_user 可以成为此函数的参数,而不是本地绑定。

Your approach doesn't work because when user is in a room the #user element does not exist in the DOM anymore (it was overridden in join_room).

Why don't you extend user_update with one more parameter being the user name for whom the update is being performed? I.e. current_user could become a parameter of this function instead of a local binding.

但可醉心 2024-12-17 04:18:51

想通了! 部分应用程序成功了。

对于那些想查看代码的人,请查看 pastebin.com 上的源代码

Figured it out! Partial Application did the trick.

For those who rather see the code, check source on pastebin.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文