为什么在axios get方法中显示statuscode 415错误? [英] why it shows statuscode 415 error in axios get method?

查看:90
本文介绍了为什么在axios get方法中显示statuscode 415错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

虽然使用axios get方法获取API数据,但返回的错误显示

While fetching API data using axios get method, it returns an error showing

statuscode 415(Unsupported Media Type)

我在邮递员中得到了预期的结果.

I'm getting the expected result in postman.

此请求需要原始数据(用户名)才能获取指定的数据.

This request needs raw data (username) in order to fetch specified data.

   axios
    .get(URL,{
        username:"Name",
        headers:{
            'Content-Type': 'application/json;'
        }
    })

推荐答案

更改为

 axios.post(URL,{data:{ username:"Name"}, headers:{ 
'Content-Type': 'application/json;' } })

这篇关于为什么在axios get方法中显示statuscode 415错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆