Home > Article > Web Front-end > How to Properly Pass JSON POST Data to a Web API Method as an Object?
How to Pass JSON POST Data to Web API Method as an Object?
ASP.NET MVC4 Web API applications offer a convenient way to define POST methods that save customer data. However, when customer data is passed in JSON format within the POST request body, the customer parameter in the POST method might contain null values for its properties.
Fixing the Issue: Using Content Type "application/json"
To resolve this issue, it's crucial to use the following Content-Type header:
Content-Type: application/json
Request Modification:
When sending the request, the following changes are necessary:
// Convert the customer object to a JSON string var customerJSON = JSON.stringify(customer); // Set the Content-Type header var xhr = new XMLHttpRequest(); xhr.open("POST", "api/customers"); xhr.setRequestHeader("Content-Type", "application/json"); xhr.send(customerJSON);
In this scenario, the model binder will appropriately bind the JSON data to the class object.
Additional Considerations:
public object Post([FromBody] Customer customer)
The above is the detailed content of How to Properly Pass JSON POST Data to a Web API Method as an Object?. For more information, please follow other related articles on the PHP Chinese website!