Sencha touch webmatrix中的Sencha touch

Sencha touch webmatrix中的Sencha touch,sencha-touch,webmatrix,iis-express,Sencha Touch,Webmatrix,Iis Express,我正在WebMatrix中尝试sencha touch,但没有太大成功。sencha库中的所有内容都已下载,IISExpress运行正常,但当我浏览到index.html时,浏览器中会显示以下内容 Ext.application({ name: 'Sencha', controllers: ['Main'], views: ['Main'], stores: ['MoreCards'], launch: function() { Ex

我正在WebMatrix中尝试sencha touch,但没有太大成功。sencha库中的所有内容都已下载,IISExpress运行正常,但当我浏览到index.html时,浏览器中会显示以下内容

Ext.application({
    name: 'Sencha',

    controllers: ['Main'],
    views:  ['Main'],
    stores: ['MoreCards'],

    launch: function() {
        Ext.Viewport.add({
            xclass: 'Sencha.view.Main'
        });
    }
});

知道发生了什么事吗?WebMatrix没有显示任何错误,Chrome也没有显示任何错误?

我最终找到了问题所在。基本上,IISExpress看到app.js并假设您正在处理一个NodeJS项目,该项目将处理程序信息添加到web.config中。使用现有app.js文件创建新项目时,请选择“取消NodeJS设置”,或者删除web.config文件中的NodeJS配置部分