设置表头,将发送的数据改为form-data类型

export default function request(options) {
    return new Promise((resolve, reject) => {
        let base_url = "http://w57ubd.natappfree.cc/api/"
        uni.request({
            url: base_url + options.url, //服务器接口地址
            method: options.method, //请求方法
            data: options.data,
            success: resolve, //接口调用成功回调函数
            fail: reject ,//接口调用失败回调函数
            header:{ "Content-Type": "application/x-www-form-urlencoded"}
        })
    })
}
 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐