Sencha Touch:错误-即使加载了以下类的文件,也不会声明它们:'Ext.panel' [英] Sencha touch: Error-" The following classes are not declared even if their files have been loaded: 'Ext.panel'

查看:10
本文介绍了Sencha Touch:错误-即使加载了以下类的文件,也不会声明它们:'Ext.panel'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚开始接触sencha Touch,对sencha文档及其原生感觉印象深刻。我正在试用这个link。但是我在两者之间得到了错误,并且我在控制台中得到这样的错误:"以下类即使它们的文件已经被加载也没有被声明:‘Ext.panel’。请检查它们相应文件的源代码以查找可能的拼写错误:‘ouch/src/panel.js’。我是MVC框架的新手,所以我找不到哪里出错了。" 在试用Sencha Touch之前,有必要对ExtJ有很好的了解吗?

以下是我的代码 App.js

Ext.Loader.setPath({
'Ext': 'touch/src'
});


Ext.application({
name: 'hello',

requires: [
'Ext.MessageBox'
],

views: [
'Main','Home'
],

icon: {
'57': 'resources/icons/Icon.png',
'72': 'resources/icons/Icon~ipad.png',
'114': 'resources/icons/Icon@2x.png',
'144': 'resources/icons/Icon~ipad@2x.png'
},

isIconPrecomposed: true,

startupImage: {
'320x460': 'resources/startup/320x460.jpg',
'640x920': 'resources/startup/640x920.png',
'768x1004': 'resources/startup/768x1004.png',
'748x1024': 'resources/startup/748x1024.png',
'1536x2008': 'resources/startup/1536x2008.png',
'1496x2048': 'resources/startup/1496x2048.png'
},

launch: function() {
// Destroy the #appLoadingIndicator element
Ext.fly('appLoadingIndicator').destroy();

// Initialize the main view
Ext.Viewport.add(Ext.create('hello.view.Main'));
},

onUpdated: function() {
Ext.Msg.confirm(
"Application Update",
"This application has just successfully been updated to the latest version. Reload,
function(buttonId) {
if (buttonId === 'yes') {
window.location.reload();
}
}
);
}
});

Main.js

Ext.define('hello.view.Main', {
extend: 'Ext.tab.Panel',
requires: [
'Ext.TitleBar'
],
config: {
tabBarPosition: 'bottom',

items: [
{
xtype:'homepanel'
}
]
}
});

Home.js

Ext.define('Hello.View.Home',{
extend:'Ext.panel',
xtype:'homepanel',
config:{
title:'Home',
iconCls:'home',

html: [
'<img src="http://staging.sencha.com/img/sencha.png" />',
'<h1>Welcome to Sencha Touch</h1>',
"<p>You're creating the Getting Started app. This demonstrates how ",
"to use tabs, lists, and forms to create a simple app</p>",
'<h2>Sencha Touch</h2>'
].join("")

}
});

index.html

<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>hello</title>
<style type="text/css">

</style>
<!-- The line below must be kept intact for Sencha Command to build your application ->
<script id="microloader" type="text/javascript" src="touch/microloader/development.js">     </script>
<script type="text/javascript" src="app/view/Home.js"></script>
</head>
<body>
<div id="appLoadingIndicator">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>

推荐答案

完全如错误所示。类名是Ext.Panel,而不是Ext.panel

这篇关于Sencha Touch:错误-即使加载了以下类的文件,也不会声明它们:&#39;Ext.panel&#39;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆