91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于Springboot+vue如何實現圖片上傳至數據庫并顯示

發布時間:2023-05-19 16:02:54 來源:億速云 閱讀:89 作者:iii 欄目:編程語言

這篇文章主要講解了“基于Springboot+vue如何實現圖片上傳至數據庫并顯示”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“基于Springboot+vue如何實現圖片上傳至數據庫并顯示”吧!

    一、前端設置

    前端是Vue + Element-UI 采用el-upload組件(借鑒官方)上傳圖片:

    <el-upload
         ref="upload"
         class="avatar-uploader"
         action="/setimg"
         :http-request="picUpload"
         :show-file-list="false"
         :auto-upload="false"
         :on-success="handleAvatarSuccess"
         :before-upload="beforeAvatarUpload">
       <img v-if="$hostURL+imageUrl" :src="$hostURL+imageUrl" class="avatar">
       <i v-else class="el-icon-plus avatar-uploader-icon"></i>
     </el-upload>
    
    <el-button type="primary" @click="submitUpload">修改</el-button>

    action在這里可以隨便設置,因為在后面有 :http-request 去自己設置請求,注意由于是自己寫請求需要 :auto-upload=“false” ,并且由于是前后端連接要解決跨域問題,所以在 $hostURL+imageUrl 定義了一個全局變量:

    //在main.js中
    	Vue.prototype.$hostURL='http://localhost:8082'

    在methods中:

    methods:{
    //這里是官方的方法不變
    	handleAvatarSuccess(res, file){
    	      this.imageUrl = URL.createObjectURL(file.raw);
    	},
        beforeAvatarUpload(file) {
          const isJPG = file.type === 'image/jpeg';
          const isLt2M = file.size / 1024 / 1024 < 2;
    
          if (!isJPG) {
            this.$message.error('上傳頭像圖片只能是 JPG 格式!');
          }
          if (!isLt2M) {
            this.$message.error('上傳頭像圖片大小不能超過 2MB!');
          }
          return isJPG && isLt2M;
        },
    //這里是自定義發送請求
        picUpload(f){
         let params = new FormData()
         //注意在這里一個坑f.file
         params.append("file",f.file);
         this.$axios({
           method:'post',
           //這里的id是我要改變用戶的ID值
           url:'/setimg/'+this.userForm.id,
           data:params,
           headers:{
             'content-type':'multipart/form-data'
           }
         }).then(res=>{
         //這里是接受修改完用戶頭像后的JSON數據
           this.$store.state.menu.currentUserInfo=res.data.data.backUser
           //這里返回的是頭像的url
           this.imageUrl = res.data.data.backUser.avatar
         })
       },
       //觸發請求
        submitUpload(){
       this.$refs.upload.submit();
     	}
    }

    在上面代碼中有一個坑 f.file ,我看了許多博客,發現有些博客只有 f 沒有 .file 導致出現401、505錯誤。

    二、后端代碼

    1.建立數據庫

    基于Springboot+vue如何實現圖片上傳至數據庫并顯示

    這里頭像avatar是保存的上傳圖片的部分url

    2.實體類、Mapper

    實體類:

    采用mybatis plus

    @Data
    public class SysUser extends BaseEntity{
    //這里的BaseEntity是id,statu,created,updated數據
        private static final Long serialVersionUID = 1L;
    
        @NotBlank(message = "用戶名不能為空")
        private String username;
    
    //    @TableField(exist = false)
        private String password;
        @NotBlank(message = "用戶名稱不能為空")
        private String name;
        //頭像
        private String avatar;
    
        @NotBlank(message = "郵箱不能為空")
        @Email(message = "郵箱格式不正確")
        private String email;
        private String tel;
        private String address;
        @TableField("plevel")
        private Integer plevel;
        private LocalDateTime lastLogin;
    }
    @Mapper
    @TableName("sys_user")
    public interface SysUserMapper extends BaseMapper<SysUser> {
    }
    3.接受請求,回傳數據
        @Value("${file.upload-path}")
        private String pictureurl;
        @PostMapping("/setimg/{id}")
        public Result setImg(@PathVariable("id") Long id, @RequestBody MultipartFile file){
            String fileName = file.getOriginalFilename();
            File saveFile = new File(pictureurl);
            //拼接url,采用隨機數,保證每個圖片的url不同
            UUID uuid = UUID.randomUUID();
            //重新拼接文件名,避免文件名重名
            int index = fileName.indexOf(".");
            String newFileName ="/avatar/"+fileName.replace(".","")+uuid+fileName.substring(index);
            //存入數據庫,這里可以加if判斷
            SysUser user = new SysUser();
            user.setId(id);
            user.setAvatar(newFileName);
            sysUserMapper.updateById(user);
            try {
                //將文件保存指定目錄
                file.transferTo(new File(pictureurl + newFileName));
            } catch (Exception e) {
                e.printStackTrace();
            }
            System.out.println("保存成功");
            SysUser ret_user = sysUserMapper.selectById(user.getId());
            ret_user.setPassword("");
            return Result.succ(MapUtil.builder()
                    .put("backUser",ret_user)
                    .map());
        }

    yml文件中圖片的保存地址:

    file:
      upload-path: D:\Study\MyAdmin\scr

    三、顯示圖片

    1.后端配置

    實現前端Vue :scr 更具url顯示頭像圖片,則必須設置WebMVC中的靜態資源配置

    建立WebConfig類

    @Configuration
    public class WebConfig implements WebMvcConfigurer{
        private String filePath = "D:/Study/MyAdmin/scr/avatar/";
        @Override
        public void addResourceHandlers(ResourceHandlerRegistry registry) {
            registry.addResourceHandler("/avatar/**").addResourceLocations("file:"+filePath);
            System.out.println("靜態資源獲取");
        }
    }

    這樣就可是顯示頭像圖片了

    2.前端配置

    注意跨域問題以及前面的全局地址變量

    vue.config.js文件(若沒有則在scr同級目錄下創建):

    module.exports = {
        devServer: {
            // 端口號
            open: true,
            host: 'localhost',
            port: 8080,
            https: false,
            hotOnly: false,
            // 配置不同的后臺API地址
            proxy: {
                '/api': {
                //后端端口號
                    target: 'http://localhost:8082',
                    ws: true,
                    changOrigin: true,
                    pathRewrite: {
                        '^/api': ''
                    }
                }
            },
            before: app => {}
        }
    }

    main.js:

    	axios.defaults.baseURL = '/api'

    感謝各位的閱讀,以上就是“基于Springboot+vue如何實現圖片上傳至數據庫并顯示”的內容了,經過本文的學習后,相信大家對基于Springboot+vue如何實現圖片上傳至數據庫并顯示這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    阜南县| 梁平县| 南岸区| 梁山县| 湖北省| 额济纳旗| 额尔古纳市| 全椒县| 禄劝| 平度市| 望都县| 织金县| 启东市| 如皋市| 竹溪县| 新化县| 同心县| 岳西县| 江山市| 安乡县| 石嘴山市| 扎兰屯市| 南平市| 鹤壁市| 重庆市| 子洲县| 遂平县| 缙云县| 道真| 贺州市| 万安县| 杭锦旗| 合水县| 揭西县| 光泽县| 册亨县| 抚远县| 瑞丽市| 泰和县| 百色市| 巧家县|