gpt4 book ai didi

javascript - cakePhp - 访问 webroot 中的文件夹内容

转载 作者:行者123 更新时间:2023-11-29 19:02:26 25 4
gpt4 key购买 nike

这是我想要的结构:

-webroot/
-css/
-font/
-img/
-js/
-new_folder/
-file.css
-another_new_folder/
-file.js

如何在 .ctp 文件中访问 webroot/new_folder/file.csswebroot/new_folder/another_new_folder/file.js ,为了生成两个标签,如下所示:

<link href="/new_folder/file.css">
<script src="/new_folder/another_new_folder/file.js">

如果可能,不生成 Controller 。

谢谢你们。

最佳答案

你可以使用

echo $this->Html->css('/new_folder/file');
// webroot/new_folder/file.css
echo $this->Html->script('/new_folder/another_new_folder/file');
// webroot/new_folder/another_new_folder/file.js

对于css和脚本你可以使用下面的方式

echo $this->Html->script('custom');
// webroot/js/custom.js

echo $this->Html->script('otherdir/custom');
// webroot/js/otherdir/custom.js


echo $this->Html->script('/otherdir/custom');
// webroot/otherdir/custom.js

更多请查看Linking to Javascript FilesLinking to CSS Files

关于javascript - cakePhp - 访问 webroot 中的文件夹内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45875504/

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