我在控制台中收到错误:Ext.application is not a function
。我的index.html
文件包含以下代码:
...
<link rel="stylesheet" type="text/css" href="/ext-5.0.1/packages/ext-theme-neptune/build/resources/ext-theme-neptune-all.css" />
<script src="/ext-5.0.1/ext-all-debug.js"></script>
<script type="text/javascript" src="app.js"></script>
...
虽然app.js
只有这段代码,取自一个演示:
Ext.application({
name: 'AM',
appFolder: 'app',
launch: function() {
Ext.create('Ext.container.Viewport', {
layout: 'fit',
items: [{
xtype: 'panel',
title: 'Users',
html : 'List of users will go here'
}]
});
}
});
编辑
顺便说一句,即使运行“官方”,/ext-5.0.1/examples/app/simple/simple.html
我也会遇到同样的错误。这是为什么?