1. 程式人生 > >ajaxSubmit 上傳文件 提示下載json處理

ajaxSubmit 上傳文件 提示下載json處理

() data html resp charset har json servlet bsp

1.將ajaxSubmit 的dataType設置為json, 即dataType:"json"

2.將響應頭內容設置為text/html;charset=utf-8 即Struts2 Action中返回響應時設置如下

ServletActionContext.getResponse().setContentType("text/html; charset=utf-8");
ServletActionContext.getResponse().getWriter().write(json.toString());

ajaxSubmit 上傳文件 提示下載json處理