轨道: erb + JavaScript 问题

发布于 2024-12-04 17:49:00 字数 275 浏览 3 评论 0原文

我的 show.erb.html 文件中可以包含条件 javascript 吗?

像这样的事情:

<%- if File.exists?("/leggle/data/tree_xml.xml") %>
  <script type="text/javascript"> 
    ...code...
  </script>
<%- end %>

只有当该文件存在时才会出现 javascript 代码?

Can I have conditional javascript in my show.erb.html files?

Something like this:

<%- if File.exists?("/leggle/data/tree_xml.xml") %>
  <script type="text/javascript"> 
    ...code...
  </script>
<%- end %>

and have the javascript code appear only if that file exists??

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

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

发布评论

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

评论(2

甜宝宝 2024-12-11 17:49:00

是的,你可以。更好的方法是使用不显眼的 JavaScript (UJS),它将 JS 和 HTML 分开(就像模型/视图/控制器一样)。在您的情况下,您可能有或没有带有 JavaScript 的标签(例如),并为其分配了操作。

Yes you can. The better way to do it though is to use unobtrusive JavaScript (UJS) which will keep JS and HTML separated (just like Model/View/Controller). In your case you'll either have or not have a tag (for example) with a JavaScript with assigned action to it.

陌若浮生 2024-12-11 17:49:00

是的。有了这样的东西,尝试一下、访问页面并检查页面源代码以查看它是否存在(或者查看 JS 操作是否发生)总是很容易的。

Yes. With something like this, it's always easy to just try it out, visit the page, and check the page source to see if it's there (or see if the JS action happened).

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