我正在使用 ASPNET Boilerplate 框架来开发我的应用程序,但我确信这是一个特定于 WebAPI 的问题。我正在使用一个基于以下应用层函数的动态 WebAPI 函数。
在我的 Angular 应用程序上,我使用以下代码将数据发布到动态 API 并最终发布到应用程序层函数。
var formDataObject = new FormData();
formDataObject.append('avatar', vm.group.avatar);
formDataObject.append('name', vm.group.name);
formDataObject.append('description', vm.group.description);
$.ajax({
url: abp.appPath + 'api/services/app/group/CreateGroup',
processData: false,
//contentType: false,
type: 'POST',
data: formDataObject
});
我在 Chrome 控制台中收到以下错误:
{"message":"The request entity's media type 'application/x-www-form-urlencoded' is not supported for this resource.","exceptionMessage":"No MediaTypeFormatter is available to read an object of type 'InputGroup' from content with media type 'application/x-www-form-urlencoded'.","exceptionType":"System.Net.Http.UnsupportedMediaTypeException","stackTrace":" at System.Net.Http.HttpContentExtensions.ReadAsAsync[T](HttpContent content, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger, CancellationToken cancellationToken)\r\n at System.Net.Http.HttpContentExtensions.ReadAsAsync(HttpContent content, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger, CancellationToken cancellationToken)\r\n at System.Web.Http.ModelBinding.FormatterParameterBinding.ReadContentAsync(HttpRequestMessage request, Type type, IEnumerable`1 formatters, IFormatterLogger formatterLogger, CancellationToken cancellationToken)"}
我尝试了以下解决方案但没有成功:
- 使用 FormDataCollection 作为参数类型。
- 发布没有文件(头像)对象。失败的。
- 使用 application/formdata 类型发布。失败的。
我在互联网上看到的所有解决方案都不适合我。