在C#Azure函数中,我可以使用
将请求正文中的字符串转换为字节数组 public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
byte[] fileData = await req.Content.ReadAsByteArrayAsync();
...
return new HttpResponseMessage(HttpStatusCode.Created);
}
如何用JavaScript做同样的事情?
还如何在C#和JavaScript中将请求正文转换为流?