Rails.js 的目的

发布于 2024-11-19 03:49:01 字数 85 浏览 4 评论 0原文

我正在熟悉 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就像说晚安 2024-11-26 03:49:01

将其视为 jQuery 和 Rails 之间缺失的链接。假设您有一个表单标签,

<form method="POST" action="/some/path" data-remote="true">
  ..
</form>

将查看此表单标签上的 data-remote 以及 Rails 所使用的其他此类属性的代码,并通过 AJAX 提交此表单,由 Rails.js 处理。它就像 Rails 和 jQuery 之间的连接器。源代码相当简单,您可以在 https://github 阅读.com/rails/jquery-ujs/blob/master/src/rails.js

Think of it as the missing link between jQuery and Rails. Suppose you have a form tag,

<form method="POST" action="/some/path" data-remote="true">
  ..
</form>

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文