JSP使用ajaxFileUpload.js实现跨域问题
前端  /  管理员 发布于 4年前   269
废话不多说了,直接给大家贴代码了。
jsp代码如下
$.ajaxFileUpload ( { url:'http://lh.abc.com:8080/gap/gap/fileUpload.do',//用于文件上传的服务器端请求地址(本机为fxb.abc.com) secureuri:false,//一般设置为false fileElementId:'file',//文件上传空间的id属性 <input type="file" id="file" name="file" /> dataType: 'jsonp',//返回值类型 一般设置为json jsonp: 'jsoncallback', jsonpCallback:'success_jsonpCallback', function success_jsonpCallback(data) { alert("1"); }, success: function (data, status) //服务器成功响应处理函数 { alert(data.message);//从服务器返回的json中取出message中的数据,其中message为在struts2中action中定义的成员变量 if(typeof(data.error) != 'undefined') { if(data.error != '') { alert(data.error); }else { alert(data.message); } } }, error: function (data, status, e)//服务器响应失败处理函数 { alert(status); alert(e); } } )
配置文件
<action name="fileUpload" class="com.gap.action.FileUploadAction" method="fileUpload"><result type="json" name="success"><param name="contentType">text/html</param></result><result type="json" name="error"><param name="contentType">text/html</param></result></action>
action中的处理如下
public String fileUpload() throws Exception {String path = ServletActionContext.getRequest().getRealPath("/upload1");// String path = ConfigDataInfo.getConfigValue("imgServer");try {File f = this.getFile();if (this.getFileFileName().endsWith(".exe")) {message = "对不起,你上传的文件格式不允许!!!";} else {FileInputStream inputStream = new FileInputStream(f);FileOutputStream outputStream = new FileOutputStream(path + "/"+ this.getFileFileName());byte[] buf = new byte[1024];int length = 0;while ((length = inputStream.read(buf)) != -1) {outputStream.write(buf, 0, length);}inputStream.close();outputStream.flush();message = "上传成功";}} catch (Exception e) {e.printStackTrace();message = "对不起,文件上传失败了!!!!";}return SUCCESS;}
每次跨域上传图片时,可以成功上传到服务器上,但是不能正确的返回信息,总是进入error方法中,正确应该进入success方法
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号