我是 php 和 symfony 的新手。我一直在成功使用以下语法将 css 和脚本包含到我的页面中:
<link rel="stylesheet" type="text/css" href="{{ asset('css/bootstrap.css') }}">
现在,我有一个引用图像的 css
.menu{
background: url(../img/mobile.png) no-repeat center;
}
找不到图像。我认为这是因为我不能在asset()
这里使用语法。
我怎么解决这个问题 ?