How to add an external javascript file to a Zend Framework 2 application?

后端 未结 7 2205
梦毁少年i
梦毁少年i 2021-02-07 14:42

I need to add jQuery and other javascript files to my Zend Framework project. I am trying to do it with an Action controller:-

public function userinfoAction()
{         


        
7条回答
  •  灰色年华
    2021-02-07 15:23

    a good way for that is to use the below code in your controller action lets say u want to include the paginator.js

    $this->view->headScript()->appendFile($this->view->baseUrl().'/js/paginator.js');
    

提交回复
热议问题