轨道: erb + JavaScript 问题
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。更好的方法是使用不显眼的 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.
是的。有了这样的东西,尝试一下、访问页面并检查页面源代码以查看它是否存在(或者查看 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).