fetch使用put请求提交文件,postman使用put请求提交文件

javascript 复制代码
import { createFetch } from "@vueuse/core";
       


         // 上传
        const useMyFetch = createFetch({
          options: {
            async beforeFetch({ options }) {
              options.method = "PUT";
              options.headers = {
                ...options.headers,
                "Content-Type": req.file.type
              };
              return { options };
            }
          }
        });
        const { error } = await useMyFetch(host).put(req.file).text();

        if (error.value) {
          ElMessage.error("文件上传失败");
          item.error = error.value.message;
          emit("error", item);
          return reject(error);
        }

人工智能学习网站

https://chat.xutongbao.top

相关推荐
IMPYLH12 小时前
Lua 的 require 函数
java·开发语言·笔记·后端·junit·lua
avi911112 小时前
Lua高级语法-第二篇
lua·游戏开发·编程语言·语法糖
AI绘画小3312 小时前
Web 安全核心真相:别太相信任何人!40 个漏洞挖掘实战清单,直接套用!
前端·数据库·测试工具·安全·web安全·网络安全·黑客
雨中飘荡的记忆15 小时前
秒杀系统设计与实现
java·redis·lua
Proud lion19 小时前
庚商技术团队的新“接口自由”:Apipost-Helper让文档自己长出来
intellij-idea·postman·开发工具·后端开发·apipost·apifox·apipost-helper
测试界的海飞丝1 天前
10道软件测试面试题及其答案:
服务器·测试工具·职场和发展
REDcker1 天前
tcpdump 网络数据包分析工具完整教程
网络·测试工具·tcpdump
emo了小猫2 天前
Redis 执行 Lua 脚本过程中报错,会发生什么
redis·junit·lua
程序员念姐2 天前
软件测试系统流程和常见面试题
测试工具·面试
西游音月2 天前
(5)pytest+Selenium自动化测试-元素定位之XPath定位
selenium·测试工具·pytest