如何在 ruby on Rails 中包含 jQuery 中的会话信息?
我正在 ruby on Rails 中开发 jQuery 聊天室,我试图包含当前用户的名称。然而,每当我写作时,
var user=<%= current_user.name %>
聊天室就会停止工作。上述说法有什么问题吗? current_user 方法返回当前用户。
I am working on a jQuery chat room in ruby on rails and I am trying to include the current user's name. However, whenever I write
var user=<%= current_user.name %>
the chat room stops working. What is wrong with the above statement? The current_user method returns the current user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本来应该是
It should have been
您想要引用并正确转义名称:
You want to quote and properly escape the name: