Lv.1
在 【box喵lus】我为之前的莽撞道歉,但是你们的责任似乎不止如此 中回复
https://shequ.codemao.cn/community/480456
2022-08-21T21:42:44 点赞:0
在 关于html上传 中回复
var xhr = new XMLHttpRequest();
xhr.open('post', '前面的链接,防吃格式', true);
xhr.send(file); // file是文件内容
xhr.onreadystatechange = () => {
if (xhr.readyState == 4) {
const { Key, Size } = JSON.parse(xhr.response);
};
};2022-08-22T15:54:53 点赞:0