Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个简单的资产过滤器来替换我的 symfony 应用程序中 Javascript 文件中的变量。我想在我的应用程序 config.yml 中定义变量并在我的 JS 文件中使用 $variablename。
返回 css 作为控制器响应。
/** * @Route("/style.css") */ public function styleAction() { $response = new Response(); $response->setContent(/* make your css */); $response->headers->set('Content-Type', 'text/css'); return $response; }