myeclipse7.5安装extbuilder

来源:百度知道 编辑:UC知道 时间:2024/06/20 03:58:32
问3个问题!本人万分感谢!
(1) myeclipse7.5如何安装extbuilder插件啊?
(2)请问高手Ext Designer Preview正式版有没有发布啊?好像网上只能下载预览版的.
(3)extJs如何 调用 struts 返回的集合或对象等数据啊?

(3)
Ext.Ajax.request({
url:'myAction!myMethod.action',
success: function(response, options)
{
var data = Ext.util.JSON.decode(response.responseText);
},
failure: function(response, options)
{
Ext.Msg.alert('错误', "请联系管理员!");
},
params:{ param_1: "abc", param_2: 123 }
});