gpt4 book ai didi

ruby-on-rails - 如何使用javascript_include_tag获取文件夹中的所有脚本

转载 作者:行者123 更新时间:2023-12-04 03:54:55 27 4
gpt4 key购买 nike

我想使用javascript_include_tag通过递归获取所有与 View 相关的脚本,并将其放置在public/javascripts/views中。

我正在尝试javascript_include_tag "/views", :recursive => true,但是无法添加任何脚本。

问候,
阿列克谢·扎哈罗夫(Alexey Zakharov)

最佳答案

根据javascript_include_tagAPI documentation:

Returns an html script tag for each of the sources provided.

You can pass in the filename (.js extension is optional) of javascript files that exist in your public/javascripts directory for inclusion into the current page or you can pass the full path relative to your document root.


您不能递归地将所有文件包含在目录中。但是,您始终可以编写类似于下一行的内容:
javascript_include_tag *Dir[Rails.root.join("public/javascripts/views/**/*.js")]

关于ruby-on-rails - 如何使用javascript_include_tag获取文件夹中的所有脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3714945/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com