ueditor上傳附件時顯示和下載都是正常的,當下次點擊在線附件時圖片圖標顯示錯誤,再添加到網頁中訪問的時候出現404錯誤,好比:
第一次添加:http://192.168.1.4:8080/uedit2/ueditor/jsp/upload/file/20140622/1403423931425017681.png
第二次就變成了:http://192.168.1.4:8080/uedit2/C:/Program Files/Apache Software Foundation/Tomcat 7.0/wtpwebapps/uedit2/ueditor/jsp/upload/file/20140622/1403423931425017681.png html
用firebug查看網絡能夠發現,當請求 controller.jsp?action=listimg 或者controller.jsp?action=listfile 的時候後端返回的url居然是後臺文件的絕對路徑,致使前端沒法訪問資源時出現404錯誤。 前端
雖然檢查了配置文件不少次了,可是仍是出現這個問題,也不知道是否是bug,ueditor後臺代碼挺複雜的,爲了簡單起見(怕改錯) 就用了下面的方法偷懶一下。 java
把 jsp/controller.jsp 裏面的代碼修改一下 web
<%@ page language="java" contentType="text/html; charset=UTF-8" import="com.baidu.ueditor.ActionEnter" pageEncoding="UTF-8"%> <%@ page trimDirectiveWhitespaces="true" %> <% request.setCharacterEncoding( "utf-8" ); response.setHeader("Content-Type" , "text/html"); String rootPath = application.getRealPath( "/" ); String action = request.getParameter("action"); String result = new ActionEnter( request, rootPath ).exec(); if( action!=null && (action.equals("listfile") || action.equals("listimage") ) ){ rootPath = rootPath.replace("\\", "/"); result = result.replaceAll(rootPath, "/");//把返回路徑中的物理路徑替換爲 '/' } out.write( result ); %>