Azure 函数 - 如何读取表单数据

Azure functions - How to read form data(Azure 函数 - 如何读取表单数据)
本文介绍了Azure 函数 - 如何读取表单数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Azure函数中读取表单数据?我尝试了几种方法,但总是出现错误,例如:

How to read form data in Azure functions? I tried to do it in several ways, but always I get an error, eg.:

using System.Net;

public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
    dynamic data = await req.Content.ReadAsFormDataAsync();

    return req.CreateResponse(HttpStatusCode.OK, $" {data}");
}

错误:执行函数时出现异常:Functions.FormTrigger.System.Net.Http.Formatting:没有 MediaTypeFormatter 可用于从媒体类型为application/json"的内容中读取FormDataCollection"类型的对象.

我检查了请求内容,我收到的请求是 multipart/form-data:

I checked request content and I'm getting request as multipart/form-data:

" ------WebKitFormBoundary47wKq7pk9Fcc4H9J
Content-Disposition: form-data; name="name"

sdgs

------WebKitFormBoundary47wKq7pk9Fcc4H9J
Content-Disposition: form-data; name=" _replyto"

sdg@sdg.com

------WebKitFormBoundary47wKq7pk9Fcc4H9J
Content-Disposition: form-data; name="message"

sdgsd

------WebKitFormBoundary47wKq7pk9Fcc4H9J--
"

感谢您的任何提示.

推荐答案

由于请求包含application/x-www-form-urlencoded"类型的内容,需要将输入转换为NameValueCollection才能读取输入:

As the request contains "application/x-www-form-urlencoded" type of contents, you need to convert the input to NameValueCollection in order to read input:

NameValueCollection col = req.Content.ReadAsFormDataAsync().Result; 
return req.CreateResponse(HttpStatusCode.OK, $" {col[0]}");

您还可以传递 Key 字符串而不是 Index,这将使代码更具可读性和不言自明

You can also pass Key string instead of Index which would make the code more readable and self-explanatory

这篇关于Azure 函数 - 如何读取表单数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)