扩展 hello_chat:如何模拟会话范围的变量
我扩展了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的方法不起作用,因为当用户在房间中时,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 injoin_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.想通了! 部分应用程序成功了。
对于那些想查看代码的人,请查看 pastebin.com 上的源代码
Figured it out! Partial Application did the trick.
For those who rather see the code, check source on pastebin.com