The difference between the files in zoodepath in ZendStuido and those in the project is as follows: when ZendStudio is used to create a ZF2 project, during the creation process, we can select which libraries are included, including the Zend Framework and some Js libraries that are included by default. after selecting the js and zf libraries to create a code project, we can find the source file of zend framework in the project file, but there is no js library file. What is the difference between the js Library and zf library? Why cannot I find the files in the included js Library? if I want to use methods and objects in the js library, can I directly call them without including js files?
Reply to discussion (solution)
Js files are used by browsers at any time, and are irrelevant to the tools you use and the development under the directories.
As long as you can ensure that the browser can read js files (including css, images, and streaming media ).
Therefore, you need to understand the differences between the web path and the file system path.
First, make sure that the js address you call in the browser is not reset, and the address is correct.
Js files are used by browsers at any time, and are irrelevant to the tools you use and the development under the directories.
As long as you can ensure that the browser can read js files (including css, images, and streaming media ).
Therefore, you need to understand the differences between the web path and the file system path.
What are the differences between the web path and the file system path?