a.php(操作数据库页面)返回的结果是:{success:true,results:3,rows:[{Tid:'1',Ttype:'自首'},{Tid:'2',Ttype:'煽动'},{Tid:'3',Ttype:'影响政治稳定'}]}=======================================================================================
js页面:
Morik.Office.PermissionPanel = function(config) {
Morik.Office.PermissionPanel.superclass.constructor.call(this, config);
var store1=new Ext.data.SimpleStore({
proxy:new Ext.data.HttpProxy({url:'php/permission/getMailType.php'}),
reader:new Ext.data.JsonReader({totalProperty:"results",root:"rows",fields:[{name:'Tid'},{name:'Ttype'}]})
});

store1.load();


var userForm = new Ext.FormPanel({
labelSeparator:": ",
labelWidth:110,
frame:true,
buttonAlign:'right',
border:false,
items:[
                      
{
xtype:'combo',
width : 160,
hiddenName : 'Tid',
name : 'Ttype',
store:store1,
                                    triggerAction:'all',
displayField:'Ttype',//定义要显示的字段
valueField:'Tid', //定义值字段
mode: 'remote', //本地模式
forceSelection : true, //要求输入值必须在列表中存在
editable:false,
fieldLabel:'邮件类型',
loadingText:'请等待,正在加载数据'
emptyText:"请选择"
                                 }],

buttons:[
{
text : '重置',
}
},{
text : '提交',
}
]
});


}
Ext.extend(Morik.Office.PermissionPanel, Ext.Panel, {});
请问为什么我的js页面里的下拉列表数据不显示呢?我感觉该写的都写了啊,为什么呢?郁闷!