我是EXTJS的新手,现在正在使用EXTJS-4.1。 我有一个基本表单,我需要在页面加载时填充数据。 服务器url将返回JSON。
[{"countryid":1,"countrycode":"US","countryname":"United States"}]
我的表单代码是
Ext.require([
'Ext.form.*'
//'Ext.layout.container.Column',
//'Ext.tab.Panel'
//'*'
]);
Ext.onReady(function() {
Ext.QuickTips.init();
var bd = Ext.getBody();
/*
* ================ Simple form =======================
*/
bd.createChild({tag: 'h2', html: 'Form 1 - Very Simple'});
var required = '<span style="color:red;font-weight:bold" data-qtip="Required">*</span>';
Ext.define('app.formStore', {
extend: 'Ext.data.Model',
fields: [
{name: 'countryid'},
{name: 'countrycode'},
{name: 'countryname'}
]
});
var myStore = Ext.create('Ext.data.Store', {
model: 'app.formStore',
proxy: {
type: 'ajax',
url : 'http://localhost/milestone_1/web/app_dev.php/md/country/show/1',
reader:{
type:'json'
}
},
autoLoad:true,
listeners: {
load: function() {
var form = Ext.getCmp('formJobSummary');
form.loadRecord(myStore.data.first());
}
}
});
var testForm = Ext.create('Ext.form.Panel', {
width: 500,
renderTo: Ext.getBody(),
title: 'Country Form',
waitMsgTarget: true,
fieldDefaults: {
labelAlign: 'right',
labelWidth: 85,
msgTarget: 'side'
},
items: [{
xtype: 'fieldset',
items: [{
xtype:'textfield',
fieldLabel: 'ID',
name: 'countryid'
}, {
xtype:'textfield',
fieldLabel: 'CODE',
name: 'countrycode'
}, {
xtype:'textfield',
fieldLabel: 'COUNTRY',
name: 'countryname'
}]
}]
});
this.testForm.getForm().loadRecord(app.formStore);
});
我能够将相同的JSON填充到网格中。你能帮我解决一下...... 我在网上得到了很多例子并试过但仍然没有运气。上面给出的也是我在浏览时获得的修改后的代码片段。
答案 0 :(得分:1)
load()
函数是异步的。所以你做了一件正确的事 - 为load事件创建一个处理程序并在那里放置逻辑。但是你犯了几个错误:
在加载处理程序中,您将获得该函数的一些参数。第一个参数将是store - 因此您不需要使用全局变量。
您不需要this.testForm.getForm().loadRecord(app.formStore);
- 因为它不是一个有效的命令,那时您不知道您的商店是否实际加载。去掉它。您已在商店处理程序中拥有loadRecords。
表单呈现和存储自动加载是两个不同的事件,您无法控制其时间。因此,我建议您为商店停用autoLoad
,并在知道表单准备就绪后手动调用store.load()
。
答案 1 :(得分:1)
var form = Ext.getCmp('formJobSummary');console.log(form)
可能会返回undefined
。为表单指定一个名称,然后离开。或者更好......
// Ext.require([
// 'Ext.form.*'
//'Ext.layout.container.Column',
//'Ext.tab.Panel'
//'*'
// ]); // you dont need ext.require for ext integrated stuff
Ext.onReady(function () {
Ext.QuickTips.init();
//var bd = Ext.getBody();
/*
* ================ Simple form =======================
*/
//bd.createChild({
// tag: 'h2',
// html: 'Form 1 - Very Simple'
//}); // over written by the form anyway
// var required = '<span style="color:red;font-weight:bold" data-qtip="Required">*</span>'; // never used
Ext.define('app.formStore', {
extend: 'Ext.data.Model',
fields: [{
name: 'countryid'
}, {
name: 'countrycode'
}, {
name: 'countryname'
}]
});
var testForm = Ext.create('Ext.form.Panel', {
width: 500,
renderTo: Ext.getBody(),
name:'formJobSummary', //why your orignal bit wasn't working
title: 'Country Form',
waitMsgTarget: true,
fieldDefaults: {
labelAlign: 'right',
labelWidth: 85,
msgTarget: 'side'
},
items: [{
xtype: 'fieldset',
items: [{
xtype: 'textfield',
fieldLabel: 'ID',
name: 'countryid'
}, {
xtype: 'textfield',
fieldLabel: 'CODE',
name: 'countrycode'
}, {
xtype: 'textfield',
fieldLabel: 'COUNTRY',
name: 'countryname'
}]
}]
});
var myStore = Ext.create('Ext.data.Store', {
model: 'app.formStore',
proxy: {
type: 'ajax',
url: 'http://localhost/milestone_1/web/app_dev.php/md/country/show/1',
reader: {
type: 'json'
}
},
autoLoad: true,
listeners: {
load: function (store,record,e) {
testForm.loadRecord(store.first());
}
}
});
});
答案 2 :(得分:-2)
很少有尝试:
1)如果你在localhost上搜索你的文件,请不要将localhost放在url上 只写
url:'/ milestone_1 / web / app_dev.php / md / country / show/1'
你的php文件是做什么的?你可以发布代码吗?
3)将代理配置放在不存储的模型上。
4)您是否尝试测试商店是否已读取负载记录?用console.log?