1

我找到了一个很酷的菜单,我想将其包含在我的应用程序中(http://tympanus.net/codrops/2013/08/...vel-push-menu/)。

所有文件都在正确的文件夹中。

起初我试图将源代码包含在 index.html 中,但没有成功。然后它试图通过一个 HTML 面板来做到这一点:

HTMLPanel.js

Ext.define('HTMLPanel', {    extend: 'Ext.Panel',


// We are using Ext.Ajax, so we should require it
requires: ['Ext.Ajax'],


config: {
    listeners: {
        activate: 'onActivate'
    },


    // Create a new configuration called `url` so we can specify the URL
    url: null
},


onActivate: function(me, container) {
    Ext.Ajax.request({
        // we should use the getter for our new `url` config
        url: this.getUrl(),
        method: "GET",
        success: function(response, request) {
            // We should use the setter for the HTML config for this
            me.setHtml(response.responseText);
        },
        failure: function(response, request) {
            me.setHtml("failed -- response: " + response.responseText);
        }
    });
}

}); 应用程序.js

var HTMLPanel = Ext.create('HTMLPanel', {            // this is now `scrollable`, not `scroll`
        //scroll: 'vertical',
        scrollable: 'vertical',


        url: 'menu.html'
    });

    // Add the new HTMLPanel into the viewport so it is visible
    Ext.Viewport.add(HTMLPanel);

该解决方案仅加载 HTML 代码,但不会启动脚本来加载菜单。

我在 index.html 中包含了需要的文件,如下所示:

<link rel="stylesheet" type="text/css" href="css/normalize.css" />    <link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/icons.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
<script src="js/classie.js"></script>
<script src="js/mlpushmenu.js"></script>

任何正确方向的提示将不胜感激!

我已经尝试过解决方案。它有效,但是很难以这种方式对其余内容进行适当的布局!

最好的问候,马努

4

1 回答 1

0

您应该能够将静态 JS 资源添加到您的 app.json 文件中。

于 2013-10-11T15:10:34.510 回答