0


前端通过http请求访问本地图片

1、前端直接引用本地图片,图片加载失败

在这里插入图片描述
具体报错信息如下:
在这里插入图片描述

Not allowed to load local resource

不允许加载本地资源

2、针对以上问题,只需要利用拦截器将本机地址映射成url路径就行

具体代码如下

@ConfigurationpublicclassFileConfigimplementsWebMvcConfigurer{@Value("${ATTACHMENT_PATH}")privateString attachmentPath;@OverridepublicvoidaddResourceHandlers(ResourceHandlerRegistry registry){
        registry.addResourceHandler("/image/**")//虚拟url路径//.addResourceLocations("file:D:/images/");.addResourceLocations("file:"+ attachmentPath);//真实本地路径}}

图片访问地址为:

http://localhost:8088/image/aaa.png
标签: 前端

本文转载自: https://blog.csdn.net/dxjren/article/details/138077390
版权归原作者 程序修理员 所有, 如有侵权,请联系我们删除。

“前端通过http请求访问本地图片”的评论:

还没有评论