ueditor1.4.3jsp版成功上傳圖片後卻回顯不出來與線上管理顯示不出圖片的解決方案
阿新 • • 發佈:2019-02-15
這是因為路徑問題,可以在jsp/config.json這個檔案去改路徑
通過“imageUrlPrefix”與“imagePathFormat”這兩個屬性去拼湊路徑。
“imageUrlPrefix”是字首的意思
如:我遇到的問題是圖片回顯地址為:
http://localhost:8080/ueditor/jsp/upload/image/......
而正確的地址是:
http://localhost:8080/Spring_3100_Registration_9_bootstrap/ueditor/jsp/upload/image/......
“Spring_3100_Registration_9_bootstrap” 是我專案的名字,所以,我通過配置“imageUrlPrefix”與“imagePathFormat”這兩個屬性,
將他們設定為:
"imageUrlPrefix": "/Spring_3100_Registration_9_bootstrap/",
"imagePathFormat": "/ueditor/jsp/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}",
就可以正確回顯了