문제

I have an ExtJS 4 project using MVC architecture.

The server URL to the project is http://myServer/myProject, but ExtJS is ignoring the project name, giving me a 404 error (cannot find http://myServer/app/view/Viewport.js)

How do I tell ExtJS to prepend the project name before the URL paths?

도움이 되었습니까?

해결책

You can use app folder property to let it know where to start looking for your files:

Ext.application({
   name:'MyExtApp',
   appFolder:'js/MyApp/app',
...
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top