在/ resource / app目录下调用ext.js文件

时间:2015-04-03 17:01:48

标签: spring extjs model-view-controller extjs5

enter image description here

这是我的spring mvc项目的文件夹结构

enter image description here app.js文件是从index.jsp文件中调用的。

enter image description here

这是app.js文件。

enter image description here

这是/ resource / app文件夹下的application.js文件。

enter image description here

为了确保,我还为spring mvc config添加了另一个资源处理程序。!

enter image description here

不知何故,它可以在app文件夹下看到Application.js文件,但是它无法在app文件夹下面找到任何其他文件....

你知道问题是什么以及如何解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

从未使用spring,但你可以让extjs通过给应用程序提供其js文件的相对路径来处理app文件夹下的js文件。

Ext.define('EuroScope.Application', {

    ....

    appFolder: 'app'

    ....
});

请参阅:ExtJS application not looking in the correct app folder

答案 1 :(得分:0)

经过几天的思考,我意识到视图文件夹不仅仅是一个视图文件夹。它是MVVM模型的子集。所以,如果我想引用不同的视图,那么我需要先创建一个complte MVVM模型........