我尝试使用这个包:
https://github.com/KnpLabs/KnpSnappyBundle
并使用 css 生成我的 html,现在当我尝试像这样加载 css 时,资产包已被 Symfony 4 dans 弃用:
<html>
<head>
<!-- ... -->
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
</head>
<body>
<!-- ... -->
<script src="{{ asset('build/app.js') }}"></script>
</body>
</html>
它在控制器/视图上下文中工作,但当 ai 将 html 生成为 pdf 时,css 未加载:/
我想这是因为我的 app.js 有解释加载 app.scss 但我不知道如何解决这个问题。
提前谢谢