taro-axios icon indicating copy to clipboard operation
taro-axios copied to clipboard

在 Taro 中使用 axios。

Results 6 taro-axios issues
Sort by recently updated
recently updated
newest added

Taro 3, PATCH method 报错,Unhandled promise rejection TypeError: Ot.request is not a function

问题就是issue #24 我遇到了同样的问题。。yarn dev:weapp出来的代码就可以正常运行,yarn build:weapp出来的代码就不行 我仔细看过,上传文件的时候data在dev模式下是formData,结果build以后就是Request payload了

### 版本 Taro 3.0.5 ### 复现步骤 npm run build:weapp ``` function fetch() { const data = { k1: 'v1', k2: 'v2', k3: 'v3', } return axios.post('/url', new PostData(data)) } ```...

taro3 使用axios.all报错 S.a.all is not a function