1

我尝试使用 Extjs MVC 应用程序作为 symfony2 网站的前端。我加载 extjs lib 和我的 app.js :

Ext.Loader.setConfig({
    enabled: true
});

Ext.application({
    name: 'Cc',
    appFolder: '/bundles/mybundle/js/app',
    autoCreateViewport: false,
    controllers: [
    ],
    launch: function () {
        Ext.create('Cc.view.Viewport');
    }
});

在我的应用程序文件夹中有 Viewport.js 但是当我加载应用程序时出现 403 错误。我使用 sf doc 中描述的资产(使用命令行在 /web 中发布它们)

4

1 回答 1

0

在我检查我的应用程序文件夹的权限后就可以了...

于 2012-11-06T14:49:18.910 回答