프론트엔드 코드:
Ext.get('outputuser ').on('클릭', function(e){
Ext.MessageBox.confirm('Prompt', '사용자를 내보내시겠습니까?', function(btn){
if(btn =="yes") {
Ext.Ajax.request({
url: "다운로드할 파일의 URL을 얻을 수 있습니다.",
Success:function(res){
var obj =Ext.decode(res.responseText) ;
//alert(res.responseText);
window.location.href =obj.path;
백엔드:
코드 복사