0


前端 axios 通过 get 请求发送 json 数据

先说结论: axios 不能通过 get 请求发送 json 数据

使用 postman 可以做到通过 get 请求发送 json 数据

但是通过 axios 框架就不行, 主要是因为axios是对ajax的一个封装。他本身不支持get请求在body体传参。 原生和jquery的ajax是支持的。建议跟后端沟通,你把json拼在url后面,后端从url的queryString取值。或者使用post请求来传json数据

标签: json 前端 postman

本文转载自: https://blog.csdn.net/qq_42001686/article/details/128939105
版权归原作者 qq_42001686 所有, 如有侵权,请联系我们删除。

“前端 axios 通过 get 请求发送 json 数据”的评论:

还没有评论