描述
这是基于存储值动态创建多个视图。当我们想多次显示相同的组件时,我们基本上使用数据视图。
语法
以下是创建数据视图的简单语法。
Ext.create('Ext.DataView', {})
例
以下是显示用法的简单示例。
<!DOCTYPE html> <html> <head> <link href = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/resources/css/sencha-touch.css" rel = "stylesheet" /> <script type = "text/javascript" src = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/sencha-touch-all.js"> </script> <script type = "text/javascript"> Ext.application({ name: 'Sencha', launch: function() { var touchTeam = Ext.create('Ext.DataView', { fullscreen: true, store: { fields: ['name', 'age'], data: [ {name: 'Greg', age: 100}, {name: 'Brandon', age: 21}, {name: 'Scott', age: 21}, {name: 'Gary', age: 24}, {name: 'Fred', age: 24}, {name: 'Seth', age: 26}, {name: 'Kevin', age: 26}, {name: 'Israel', age: 26}, {name: 'Mitch', age: 26} ] }, itemTpl: '{name} is {age} years old' }); } }); </script> </head> <body> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/senchatouch/1587.html