我已将css包含在视图文件中,如下所示
<link rel="stylesheet" type="text/css" href="<?PHP echo $this->baseUrl('style/root.css'); ?>" /> <link rel="stylesheet" type="text/css" href="<?PHP echo $this->baseUrl('style/reset.css'); ?>" />
但它给出了这个错误 – >
<b>Message:</b> Invalid controller specified (style) </p>
在application.ini中,我使用过这个
resources.frontController.baseUrl = "/zendtest/public" resources.view[] = "";
我该如何解决这个问题?
在任何视图文件(.phtml扩展名)中使用类似这样的javascript或css:
$this->headScript()->prependFile('/scripts/jquery.min.js'); $this->headScript()->appendFile('/scripts/fg.menu.js'); $this->headLink()->appendStylesheet('/css/form.css'); $this->headLink()->prependStylesheet('/css/jquery_ui_theme/jquery-ui.custom.css');