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

使用Spring boot + jQuery上传文件(kotlin)功能实例详解

程序员文章站 2023-11-22 16:25:46
文件上传也是常见的功能,趁着周末,用spring boot来实现一遍。 前端部分 前端使用jquery,这部分并不复杂,jquery可以读取表单内的文件,这里可以通过f...

文件上传也是常见的功能,趁着周末,用spring boot来实现一遍。

前端部分

前端使用jquery,这部分并不复杂,jquery可以读取表单内的文件,这里可以通过formdata对象来组装键值对,formdata这种方式发送表单数据更为灵活。你可以使用它来组织任意的内容,比如使用

formdata.append("test1","hello world");

在kotlin后端就可以使用@requestparam("test1") greet: string来取得他的值。

 在本例的上传中,formdata用于装配上传表单,就像这样:

function uploadfile() {
      var formdata = new formdata();
      $.each($("input[type='file']")[0].files, function (i, file) {
        formdata.append('upload-file', file);
      });
      $.ajax({
        url: "/upload",
        method: "post",
        data: formdata,
        processdata: false,
        contenttype: false
      }).done(function (res) {
        if (res.success) {
          $("#message").text(res.message + res.files);
          $("#message").addclass("green")
          $("#message").removeclass("red")
        } else {
          $("#message").text("cannot upload files, reason: " + res.message)
          $("#message").addclass("red")
          $("#message").removeclass("green")
        }
      })
        .fail(function (res) {

        })
    }

使用formdata对象,在前端连form标签都不需要。

 其中关于上面代码的几点解释:

•如果input标签上使用了multiple,那么用户可能选择多个文件,所以再装配formdata的时候,需要上面的each循环。

•contenttype: false 设置成false告诉jquery在header里不要用任何的content type。

•processdata: false:告诉jquery不用讲传输内容编码(因为默认的content type是application/x-www-form-urlencoded)。如我们要发送dom或确实不需要编码的对象,就把这个参数设成false。

注意:

•如果不将contenttype设置成false,kotlin后端会报异常

current request is not a multipart request

•如果没有将processdata设成false,javascript会报错:

uncaught typeerror: illegal invocation

•如果要上传多个文件,在input标签上设置multiple属性。

后端部分

后端准备在上传完成后,给前端回复一个成功或失败的信息,为此,创建一个返回的对象:

class uploadresult(val success: boolean, val message: string, val files: array<string>)

•success: 告诉前端是否上传成功

•message:服务器端往前端返回的信息,可以包含任意后端想返回的内容,比如今天服务器所在地天气不好,所以服务器打算拒绝非管理员的上传请求。

•files:上传成功了哪些文件。、

 后端的关键代码:

@responsebody
@postmapping("upload")
fun upload(@requestpart("upload-file") uploadfile: array<multipartfile>): uploadresult {
  if (uploadfile.count() == 0) return uploadresult(false, "the uploading file is not detected.", arrayof())
  val dir = env.getproperty("com._1b2m.defaultuploaddir")
  val f: file = file(dir)
  if (!f.exists()) {
    f.mkdirs()
  }
  for (file in uploadfile) {
    val filename = file.originalfilename;
    val filepath: string = paths.get(dir, filename).tostring()
    val stream: bufferedoutputstream = bufferedoutputstream(fileoutputstream(file(filepath)))
    stream.write(file.bytes)
    stream.close()
  }
  return uploadresult(true, "successfully uploaded your file(s). ", uploadfile.map { it.originalfilename }.totypedarray())
}

注意:

 在kotlin中的requestpart("upload-file”),和前端的formdata.append('upload-file', file)要保持一致,我这里用的变量叫upload-file,如果不一致,后端就没有取到数据了。

本文涉及到的源代码:https://github.com/syler/fun/tree/master/spring-boot-file-upload-with-jquery

最后上一张截图,图片上传成功:

使用Spring boot + jQuery上传文件(kotlin)功能实例详解

以上所述是小编给大家介绍的使用spring boot + jquery上传文件(kotlin),希望对大家有所帮助