xiaoyong931011
2021-12-17 7da58964755c5c97fb1bd1f31a11827ff698fa2b
src/main/java/cc/mrbird/febs/video/controller/CommonController.java
@@ -38,10 +38,10 @@
    @RequestMapping(value = "/upload")
    public FebsResponse upload(MultipartRequest request) throws IOException {
        // 保存路径 /Users/helius/Desktop/
        baseSavePath = "/Users/helius/Desktop/";
//        baseSavePath = "/Users/helius/Desktop/";
        // 访问路径
        baseUrl = "http://localhost:1234/";
//        baseUrl = "http://localhost:1234/";
        List<String> visitPathes = updateImg(request);
        return new FebsResponse().success().data(visitPathes);
    }
@@ -98,4 +98,5 @@
        return fileUrlMap;
    }
}