欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Google浏览器无法访问本地图片问题解决

程序员文章站 2022-05-28 08:32:31
...

项目里图片链接本地目录时,Google浏览器无法获取访问,只需要加一个配置文件即可。

config文件:

package cn.stylefeng.guns.config.web;


import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * 访问本地目录 /images/
 *
 * @author ChengXY
 * @data 2020-11-23 13:43
 */
@Configuration
public class MyWebConfig implements WebMvcConfigurer {

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry){
        registry.addResourceHandler("/images/**").addResourceLocations("file:D:/tmp/");
    }
}

js文件:

if (result.data.path != undefined && result.data.path != "") {
        $("#img1").attr('src',"/images/"+result.data.path.substr(8));
}