0

我在 zf3 中的部分有一点问题,尝试在部分中添加 css 它不再像在 zf2 中那样工作,这是我的代码:

<?php $this->headLink()->prependStylesheet($this->serverUrl() . '/path/to/css_file.css');?>

如果有人有任何解决方案,我将不胜感激。

4

1 回答 1

0

你忘记了甜蜜的回声功能:)

<?php echo $this->headLink()->prependStylesheet($this->serverUrl() . '/path/to/css_file.css');?>
于 2017-03-21T13:29:25.350 回答