Rails.js 的目的
我正在熟悉 Rails 3、UJS 和 JQuery。我明白为什么需要 jquery.js 和 application.js,但为什么需要rails.js?
I am getting acquainted with Rails 3, UJS and JQuery. I understand why jquery.js and application.js are needed but why is rails.js needed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其视为 jQuery 和 Rails 之间缺失的链接。假设您有一个表单标签,
将查看此表单标签上的
data-remote
以及 Rails 所使用的其他此类属性的代码,并通过 AJAX 提交此表单,由 Rails.js 处理。它就像 Rails 和 jQuery 之间的连接器。源代码相当简单,您可以在 https://github 阅读.com/rails/jquery-ujs/blob/master/src/rails.jsThink of it as the missing link between jQuery and Rails. Suppose you have a form tag,
The code that will look at the
data-remote
on this form tag and other such attributes used that Rails looks at, and submit this form through AJAX is handled by rails.js. It is like a connector between Rails and jQuery. The source is rather simple which you can read at https://github.com/rails/jquery-ujs/blob/master/src/rails.js