Javascript / jQuery / Coffeescript 在 Ruby on Rails 中的作用是什么?
我一直在学习 Ruby &更具体地说,过去几个月我学习了 Rails 框架,现在我正准备深入研究 Javascript。我知道任何优秀/现代的 Rails 应用程序都会在其代码中包含 javascript。我还知道 Javascript/Jquery/Coffescript 有助于向 Web 应用程序添加一些交互性、风格和功能。
我的问题是,使用 JS(或 Jquery/Coffescript 等)与 Ruby/Rails 处理的标准问题/功能集是什么?
I have been learning Ruby & more specifically the rails framework the past few months and am now preparing to dive into Javascript. I know that any good/modern rails app will include javascript within its code. I also know that Javascript/Jquery/Coffescript help with adding some interactivity, style and functionality to web apps.
My question is what is the standard set of problems/features that one approaches with JS (or Jquery/Coffescript ect) vs Ruby/Rails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 javascript 完成一些任务:
您将使用 ruby/rails 执行的一些任务:
Some tasks you would do with javascript:
Some tasks you would do with ruby/rails:
JavaScript 是客户端,可以在页面加载后对其进行操作。它更多的是与页面的交互,而 Rails 是应用程序的后端。 Javascript 存在于大多数网站中,无论是否为 ruby/rails。
Javascript is client side and can manipulate the page after it has loaded. Its more about interaction with the page while rails is the backend of a app. Javascript is present in most web sites, ruby/rails or not.