在MyEclipse和Tomcat下配置Sencha Touch环境


首先要配置开发环境。这个很简单,只要到官方网站下载Sencha Touch压缩包即可http://www.sencha.com/products/touch/。
开发工具随便一个编辑器,记事本也可以的。
本人用的是MyEclipse+Tomcat,Sencha Touch用的是1.01版本(使用MyEclipse+Tomcat我为了以后例子可以跟后台交互)
其实可以直接浏览本地静态html文件的。

1,编写messageBox.html文件:

<!doctype html>   
<html>   
  <head>   
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">      
    <title>messageBox.html</title>   
    <link rel="stylesheet" href="../../ext/resources/css/sencha-touch.css" type="text/css">   
    <script type="text/javascript" src="../../ext/sencha-touch.js"></script>   
    <script type="text/javascript" src="messageBox.js"></script>   
  </head>   
     
  <body>   
       
  </body>   
</html> 

如果你以前用过Extjs,那么这段代码你很容易明白。

  • 引入sencha-touch.css样式文件。
  • 引入sencha-touch.js核心库文件。
  • messageBox.js是例子用的文件。

2,编写messageBox.js文件:

Ext.setup({   
    icon: '../icon.png',   
    tabletStartupScreen: '../tablet_startup.png',   
    phoneStartupScreen: '../phone_startup.png',   
    glossOnIcon: false,   
    onReady: function() {   
        Ext.Msg.alert('提示', '第一个SenchaTouch程序!');   
    }   
});   

现在我们只关心onReady函数里面的代码,其他可以copy。
如果你以前做过Extjs那么看API难不到你。你可以在onReady中使用其他组件进行测试的。

3,运行效果:
本人使用的是Opera的手机模拟器(支持html5),google浏览器也可以的。
在浏览器输入http://localhost:8080/SenchaTouchTest/myExample/messageBox/messageBox.html
当然你可以直接打开html进行浏览而不必要部署到服务器(我为了以后例子可以跟后台交互)

来源:http://www.app-edu.net/article-1337-1.html