http://topic.csdn.net/u/20100517/11/377b9a5f-fb32-4f44-813c-89fe325d7186.html
1.Ext.Ajax.request({
2. url:'getPath.action',
3. success:function(res){
4. var obj = Ext.decode(res.responseText);
5. //console.log(obj);//可以到火狐的firebug下面看看obj里面的结构
6. //加入getPath返回的json为{'path':'upload/abc.jpg'}
7. window.location.href = obj.path;//这样就可以弹出下载对话框了
8. }
9.});
html>
Debug Console