如何将 RJS 模板转换为 Coffeescript?

发布于 2024-12-11 09:14:33 字数 217 浏览 0 评论 0原文

有谁知道如何将这段简单的 RJS 代码转换为咖啡脚本?

page.call 'RecordSelect.render_page', record_select_id, render_record_select(:partial => 'list', :locals => {:page => @page})

已经很晚了,我很难理解它。

Does anyone know how to convert this simple bit of RJS code into coffee-script?

page.call 'RecordSelect.render_page', record_select_id, render_record_select(:partial => 'list', :locals => {:page => @page})

It's late and I'm having trouble wrapping my head around it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

活雷疯 2024-12-18 09:14:33

好吧,所以我发现你可以简单地在 erb 文件中使用它:

RecordSelect.render_page('<%= record_select_id %>', '<%= escape_javascript(render_record_select(:partial => 'list', :locals => {:page => @page})) %>');

我猜这就是为什么我无法弄清楚如何使其成为直接的咖啡脚本。正如我所说,已经很晚了。 。 。

Okay, so I discovered you could simply use this in an erb file:

RecordSelect.render_page('<%= record_select_id %>', '<%= escape_javascript(render_record_select(:partial => 'list', :locals => {:page => @page})) %>');

Which is I guess why I couldn't figure out how to make it straight coffee script. Like I said, it was late . . .

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