阿里OSS存储
nodejs发送文件到public内,调用oss接口上传文件。
<input type="file" name="" id="photo">
$("#photo").on("change", function () {
let file = $(this)[0].files[0];
let formdata = new FormData();
formdata.append("photo", file);
$.ajax({
typ...