简体   繁体   中英

Axios Error with Status Code 415 in Using Get Method

Good day,

I'm facing this error code using axios.get. The error code is 415. What I want to do is, supply const object to send it to my controller. I tried to debug the controller but it doesn't proceed in my controller (ASP.NET Core Controller).

Here are my sample codes:

// Class that I want to supply
public class User{
    public int? Name {get;set;}
    public DateTime? Bday {get;set;}
}

// My Controller
public async Task<IActionResult> GetUsers([FromBody] User user){
    // Do something here
}

// My js file axios is already imported and working
async searchUser(){
    const user = {
        Name: name,
        Bday: bday
    }

    await axios.get(`/SomePage/GetUsers/`,user).then(response=>{
        // do something here
    }.catch(error=>{console.log(error);});
}

I hope someone will help me find a solution about this.

The HTTP status code 415 means Unsupported Media Type. That is it indicates that the server refuses to accept the request because the payload format is in an unsupported format.

According to MDN Web Docs ,

The format problem might be due to the request's indicated Content-Type or Content-Encoding, or as a result of inspecting the data directly.

Can you change your API action FromBody to FromQuery . Technically that should work.

Yeah Jaliya is right. You can also view this docs from Microsoft about Parameter Binding in ASP.NET Web API since you're dealing with API request. Parameter Binding in ASP.NET Web API

调用 axios 时传递标头

axios.get("https://api.url.com", {headers: {'Content-Type': 'application/json'}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM