1.先在eclipse中安装worklight
eclipse->Help->Eclipse Marketplace->worklight
2.新建worklight项目,把sencha-touch的js,css文件拷贝到apps文件夹下的相应的项目内
3.修改index.html文件
加上css文件,如:<link rel="stylesheet"href="css/sencha-touch.css">
4.加上js文件,如:<scriptsrc="js/sencha-touch-all.js"></script>
<scriptsrc="app.js"></script>
5.App.js的内容,如:
Ext.application({
name: 'sechaLearn',
launch: function() {
alert("hello");
},
});
注意:不要相信eclipse中的提示信息,不正确
6.设置程序的环境,如安卓,iphone等
点击程序,右键->new->Worklight Environment->选择自己想要的型号,点击确定后即可