我想在我的 php 脚本中包含外部 js 文件。我正在关注 zend 框架。现在我正在像这样在控制器的 init 函数中添加 js 文件。
public function init() {
$this->doUserAuthorisation();
parent::init();
$this->view->headScript()->appendFile($this->view->baseUrl().'/js/front_cal/jquery-1.3.2.min.js');
$this->view->headLink()->setStylesheet($this->view->baseUrl().'/styles/front_cal/calendar.css');
}
我面临的问题是,js 文件不包含。这是包含 js 文件的正确方法吗?