We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在我的安装版本里面,yii2admin没有安装在网站的根目录,所以有些问题就出现了。 比如首页顶部的轮播图片不显示,比如下部的文章列表前面的小图不出来。 看了一下代码,很明显是 views/index/index.php 里面,没有很好地使用 @web 别名,在用到图片的时候,直接使用了绝对路径。 比如顶部轮播的图片: <img src="/static/images/assassins1.jpg" alt="第一张幻灯片" 实际上应该写成这样: <img src="<?=Yii::getAlias('@web/static/images/assassins1.jpg')?>" alt="第一张幻灯片"
<img src="/static/images/assassins1.jpg" alt="第一张幻灯片"
<img src="<?=Yii::getAlias('@web/static/images/assassins1.jpg')?>" alt="第一张幻灯片"
下面的正文前小图同样: <img src="/static/images/01.jpg" /> 应该写成 <img src="<?=Yii::getAlias('@web/static/images/01.jpg')?>" />
<img src="/static/images/01.jpg" />
<img src="<?=Yii::getAlias('@web/static/images/01.jpg')?>" />
以上。
The text was updated successfully, but these errors were encountered:
嗯,前端还没有完善,只是做了几个大概的模板以供参考。
Sorry, something went wrong.
No branches or pull requests
在我的安装版本里面,yii2admin没有安装在网站的根目录,所以有些问题就出现了。
比如首页顶部的轮播图片不显示,比如下部的文章列表前面的小图不出来。
看了一下代码,很明显是 views/index/index.php 里面,没有很好地使用 @web 别名,在用到图片的时候,直接使用了绝对路径。
比如顶部轮播的图片:
<img src="/static/images/assassins1.jpg" alt="第一张幻灯片"
实际上应该写成这样:
<img src="<?=Yii::getAlias('@web/static/images/assassins1.jpg')?>" alt="第一张幻灯片"
下面的正文前小图同样:
<img src="/static/images/01.jpg" />
应该写成
<img src="<?=Yii::getAlias('@web/static/images/01.jpg')?>" />
以上。
The text was updated successfully, but these errors were encountered: