这是因为路径问题,可以在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}",
就可以正确回显了
如果你还碰到了在线管理不能显示出图片,这是因为jar包的问题,具体可以见
http://shuoit.net/it/18.html