如何在 juggernaut 中实现文本输入部分和发送按钮?
我已经遵循了 github 上的确切指南,并且正在执行最后一步:
“就是这样!现在转到 http://localhost:8080 观看剑圣的行动。”
将显示一个对话框。但是,我无法写任何文字。
我希望能够修复该页面以供实际聊天使用,而不仅仅是测试。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您需要遵循 Juggernaut 自述文件中标题为“基本用法”的行下的指南。
完成此操作后,您可以在控制器中实现上面提到的 Ruby 代码,该控制器从表单获取用户输入,然后调用类似
Juggernaut.publish("channel1", @user_data)
的内容,从而允许您的用户通过服务器向对方发送数据。`
It looks like you need to follow the guide on the Juggernaut readme under that line titled Basic Usage.
Once you have that done you can implement the Ruby code mentioned above inside a controller which takes the user input from a form and then calls something like
Juggernaut.publish("channel1", @user_data)
allowing your users to send data through the server to each other.`