Is it possible to make this enter image description here type of post request with angular 2+ , I'm posting with postman like this and everything works fine but can't make any request with angular which my Api can handle. this is my api Controller
[HttpPost, DisableRequestSizeLimit]
public IActionResult Save([ModelBinder(BinderType = typeof(JsonModelBinder))]
DocumentEvaluationModel model, IList<IFormFile> files)
{
}
Comments
Post a Comment