MissingServletRequestPartException: Required request part ‘file‘ is not present
大概意思是:請求參數'file'接收不到數據
原因就是前端的屬性名與Controller的方法參數名不一樣導致的
解決方案:將Controller的方法參數名加上注解@RequestParam("前端屬性名")
MissingServletRequestPartException: Required request part ‘file‘ is not present
大概意思是:請求參數'file'接收不到數據
原因就是前端的屬性名與Controller的方法參數名不一樣導致的
解決方案:將Controller的方法參數名加上注解@RequestParam("前端屬性名")
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。