2024.5.22(第二阶段冲刺第八天)
所学时间:3小时
代码行数:71行
博客园数:1篇
所学知识:
1.我昨天的成就:解决retrofit2传输出现空的问题
2.遇到什么困难:前端springboot接收出现的问题
3.今天的任务:写后端springboot代码,接收前端传来的代码
4.今天所敲的代码:
@GetMapping("/getFish")
public Result<List<Fish>> getFish() throws IOException {
File image = convertMultipartFileToFile(imageFile);
String path = FileUtil.saveToFile(image,new File("C:\\Users\\三生树\\Desktop\\fish"));*//*
String strBase64 = base64.getSource();
System.out.println(strBase64);
return BaiduApi.test();
}
@GetMapping("/getFish1")
public Result<List<Fish>> getFish1() throws IOException {
*//* File image = convertMultipartFileToFile(imageFile);
String path = FileUtil.saveToFile(image,new File("C:\\Users\\三生树\\Desktop\\fish"));*//*
//String strBase64 = base64.getSource();
//System.out.println(strBase64);
return BaiduApi.test();
}
@GetMapping("/test")
public Result<String> retrofitTest(){
String a = "this is a test";
return Result.success(a);
}