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.
我在 zf3 中的部分有一点问题,尝试在部分中添加 css 它不再像在 zf2 中那样工作,这是我的代码:
<?php $this->headLink()->prependStylesheet($this->serverUrl() . '/path/to/css_file.css');?>
如果有人有任何解决方案,我将不胜感激。
你忘记了甜蜜的回声功能:)
<?php echo $this->headLink()->prependStylesheet($this->serverUrl() . '/path/to/css_file.css');?>