[code="java"]
Ext.onReady(showSampleInfo)
function showSampleInfo() {
var jReader = new Ext.data.JsonReader({
root : 'data'
}, [{
name : 'sex',
mapping : 'sex',
type : 'string'
}, {
name : 'age',
mapping : 'age',
type : 'string'
}])
var sinfo = new Ext.FormPanel({
id : 'form',
frame : true,
width : 400,
height : 300,
renderTo : 'panel',
reader : jReader,
url : '../SampleDetails.jsp',
items : [{
xtype : 'textfield',
width : 200,
fieldLabel : '性别',
name : 'sex'
}, {
xtype : 'textfield',
width : 200,
fieldLabel : '年龄',
name : 'age'
}],
buttons : [{
text : "加载数据",
listeners : {
click : function() {
sinfo.g
loadData();
}
}
}, {
text : "提交"
}, {
text : "重置",
listeners : {
click : function() {
Ext.getCmp("form").form.reset();
}
}
}]
});
function loadData() {
Ext.getCmp("form").load({
url : '../SampleDetails.jsp',
failure : function() {
alert('fail')
},
success : function() {
alert('success')
}
});
}}[/code]
SampleDetails.jsp的数据是:
{data:[{"sex":"男性","age":"29111"}]}
不复杂的FormPanel我却怎么都得不到url传来的数据
[b]问题补充:[/b]
不太明白
yourgame
的sinfo.g是什么意思
可以说的详细些吗
[b]问题补充:[/b]
非常抱歉的sinfo.g是失误加上的,但去掉以后还是加载不到数据
请问atian25您本地测试可以加载到url的数据吗
我的jsp数据是
{data:[{"sex":"男性","age":"29111"}]}
貌似没有问题
另可以保证文件路径的正确性
[b]问题补充:[/b]
既然atian25本地测试没有问题
那一定是我的数据传输部分的问题了
非常感谢各位~~