5
只需要把headers的Content-Type设置成application/x-www-form-urlencoded即可发送formData格式请求
uni.request({
    url: url, // 请求接口
    data: data, // 发送参数
    method: method || 'GET', // 参数类型
    header: {
            "Content-Type": "application/x-www-form-urlencoded"
    }, // 请求头
    dataType: 'json', // 返回数据格式
    success(response) {
    },
    fail(error) {
    },
    complete(com) {
    }
})

image.png


Max迪丶先生
1.8k 声望64 粉丝

引用和评论

0 条评论