我得到了一项任务,看看我是否可以制作能够为最终用户生成一些PDF文件的电源应用程序。 通过对这个主题的研究后我发现这不容易实现:) 为了使power应用程序生成并下载/显示生成的pdf,我做了以下步骤:
由于电源应用限制(或者我找不到方法),我无法从电源应用内部的响应中获取pdf。 在此之后,我更改了我的Azure功能以创建新的blob条目但是知道我在Azure函数中获取该新条目的URL有问题,以便将其返回到power应用程序然后使用内部电源应用程序下载功能
我的Azure功能代码在
下面using System;
using System.Net;
using System.Net.Http.Headers;
using System.Runtime.InteropServices;
using Aspose.Words;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log, Stream outputBlob)
{
log.Info($"C# HTTP trigger function processed a request. RequestUri={req.RequestUri}");
var dataDir = @"D:/home";
var docFile = $"{dataDir}/word-templates/WordAutomationTest.docx";
var uid = Guid.NewGuid().ToString().Replace("-", "");
var pdfFile = $"{dataDir}/pdf-export/WordAutomationTest_{uid}.pdf";
var doc = new Document(docFile);
doc.Save(pdfFile);
var result = new HttpResponseMessage(HttpStatusCode.OK);
var stream = new FileStream(pdfFile, FileMode.Open);
stream.CopyTo(outputBlob);
// result.Content = new StreamContent(stream);
// result.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment");
// result.Content.Headers.ContentDisposition.FileName = Path.GetFileName(pdfFile);
// result.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
// result.Content.Headers.ContentLength = stream.Length;
return result;
}
我留下了旧代码(在评论中将pdf转发回来,仅作为我尝试的参考)
有没有办法在Azure功能中获取新生成的blob条目的下载URL? 有没有更好的方法来生成电源应用程序并下载/显示生成的PDF?
P.S。我尝试在power app里面使用PDFViewer控件,但是这个控件完全没用,因为U无法通过函数设置Document值
编辑:来自@mathewc的回复帮助我做了很多事情来最终解决这个问题。所有细节如下。 新Azure功能按预期工作
#r "Microsoft.WindowsAzure.Storage"
using System;
using System.Net;
using System.Net.Http.Headers;
using System.Runtime.InteropServices;
using Aspose.Words;
using Microsoft.WindowsAzure.Storage.Blob;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log, CloudBlockBlob outputBlob)
{
log.Info($"C# HTTP trigger function processed a request. RequestUri={req.RequestUri}");
var dataDir = @"D:/home";
var docFile = $"{dataDir}/word-templates/WordAutomationTest.docx";
var uid = Guid.NewGuid().ToString().Replace("-", "");
var pdfFile = $"{dataDir}/pdf-export/WordAutomationTest_{uid}.pdf";
var doc = new Document(docFile);
doc.Save(pdfFile);
var result = new HttpResponseMessage(HttpStatusCode.OK);
var stream = new FileStream(pdfFile, FileMode.Open);
outputBlob.UploadFromStream(stream);
return req.CreateResponse(HttpStatusCode.OK, outputBlob.Uri);
}
备注:
答案 0 :(得分:3)
如果将blob输出绑定类型从Stream
更改为CloudBlockBlob
,则可以访问CloudBlockBlob.Uri
,这是您需要的Blob路径(文档here)。然后,您可以将该Uri返回到您的Power App。您可以使用CloudBlockBlob.UploadFromStreamAsync
将PDF Stream上传到blob。