子文件夹中的 FuelPHP 资源
是否可以使用资产包含子文件夹中的文件?
例子: [base_url] /assets/css/pepper-grinder/jquery-ui-1.8.11.custom.min.css
Is it possible to use Assets to include files that are in sub folders?
Example:
[base_url] /assets/css/pepper-grinder/jquery-ui-1.8.11.custom.min.css
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用以下命令访问 asset/ 文件夹的子文件夹:
You can access subfolders of the asset/ folder with this:
在
./fuel/core/config/asset.php
中,您可以更改以下代码:并且
如果将
paths
配置为assets
并且css_dir
为css/
,您可以包含[base_url] /assets/css/pepper-grinder/jquery-ui-1.8.11.custom.min。 css
通过使用echo Asset::css('pepper-grinder/jquery-ui-1.8.11.custom.min.css');
In
./fuel/core/config/asset.php
, you can alter the following code:And
If you configure
paths
to beassets
andcss_dir
to becss/
, you can include[base_url] /assets/css/pepper-grinder/jquery-ui-1.8.11.custom.min.css
by usingecho Asset::css('pepper-grinder/jquery-ui-1.8.11.custom.min.css');
是的,您只需将 asset.php 中的路径设置为您喜欢的任何内容:
也就是说,如果您想使用资源库。否则只需将它们设置为来自 webroot 的绝对路径即可。
Yup, you just set the paths in asset.php to whatever you like:
That is if you want to use the Asset library. Otherwise just make them absolute paths from webroot.