【PHP】Yii2中的资源管理的sourcePath/basePath/baseUrl分别是指的什么
【摘要】
sourcePath/basePath/baseUrl
sourcePath 源文件路径
sourcePath的位置位于vendor/yiisoft/yii2/web/AssetBundle.php ...
sourcePath/basePath/baseUrl
sourcePath 源文件路径
sourcePath的位置位于vendor/yiisoft/yii2/web/AssetBundle.php
指的是项目的模板引用的资源的源文件,如果设置的资源文件目录是不能被直接访问的,那么在访问的时候Yii2会将需要的文件复制到临时文件夹中。
比如,我们将sourcePath设置为@app/res/
,也就是静态资源文件(图片,css,js)都放在/res
中
显然/res
不在/web
下,那么不能被直接访问,所以,我们引入发布资源的概念,让你需要的资源文件在视图文件中引用资源包被注册。
basePath 基础路径
basePath指的是包含这个AssetBundle中资源文件的Web可访问目录。
但是当你设置了sourcePath,则basePath就会被AssetManager覆盖。
assetManager的位置,通过查看源代码
/**
* Returns the asset manager.
* @return \yii\web\AssetManager the asset manager application component.
*/
public function getAssetManager()
{
return $this->get('assetManager');
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
assetManager的获取方式为配
文章来源: coderfix.blog.csdn.net,作者:小雨青年,版权归原作者所有,如需转载,请联系作者。
原文链接:coderfix.blog.csdn.net/article/details/103828714
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)