標籤:style blog http java 使用 os
本例沒有採用Sencha的mvc模式。只是一個簡單的讀取載入本地Json資料樣本。
文檔結構如下:
app.js代碼如下:
Ext.require([‘Ext.form.Panel‘, ‘Ext.data.Store‘, ‘Ext.data.reader.Json‘, ‘Ext.dataview.DataView‘]);Ext.application({name:‘MyApp‘,icon:‘images/icon.png‘,glossOnIcon:false,phoneStarupScreen:‘images/starUp.png‘,tabletStartupScreen:‘images/tablet.png‘,launch:function(){Ext.define(‘User‘,{extend:‘Ext.data.Model‘,config:{fields:[{name:‘id‘,type:‘string‘},{name:‘name‘,type:‘string‘},{name:‘img‘,type:‘string‘},{name:‘age‘,type:‘string‘},{name:‘url‘,type:‘string‘},{name:‘email‘,type:‘string‘},{name:‘info‘,type:‘string‘}]}});var userStore=Ext.create(‘Ext.data.Store‘,{model:‘User‘,autoLoad:true,proxy:{type:‘ajax‘,url:‘userInfo.json‘,reader:{type:‘json‘,rootProperty:‘users‘}}});var userTemplate = new Ext.XTemplate(‘<tpl for=".">‘,‘<div class="user_img"><img src="{img}" width="50" height="50" />編號:{id}<br/>姓名:{name}<br/>年齡:{age}<br/>首頁:{url}<br/>郵件:{email}<br/>個人資訊:{info}</div>‘,‘</tpl>‘);var dataview=Ext.create(‘Ext.DataView‘,{store:userStore,itemTpl:userTemplate,listeners:{ itemtap:function( ok, index, target, record, e, eOpts){ alert(record.get("name")); } }});Ext.Viewport.add(dataview);}});
index.html檔案如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <title>index.html</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="sencha-touch.css"> <script type="text/javascript" src="sencha-touch-all-debug.js"></script> <script type="text/javascript" src="app.js"></script> </head> <body> </body></html>
userInfo.json檔案如下:
{"success":true,"users":[{"id":"1","name":"張三","img":"images/user.jpg","age":"23","url":"http://zahngsan.com","email":"[email protected]","info":"a good boy"},{"id":"2","name":"李四","img":"images/user.jpg","age":"23","url":"http://lisi.com","email":"[email protected]","info":"a good boy"},{"id":"3","name":"王五","img":"images/user.jpg","age":"23","url":"http://henghui.com","email":"[email protected]","info":"a good boy"},{"id":"4","name":"趙六","img":"images/user.jpg","age":"23","url":"http://henghui.com","email":"[email protected]","info":"a good boy"},{"id":"5","name":"錢七","img":"images/user.jpg","age":"23","url":"http://henghui.com","email":"[email protected]","info":"a good boy"}]}然後再web.xml中配置好預設首頁為index.html。
直接開啟index.html或者使用伺服器方式訪問。
顯示如下: