0

我正在尝试在ASP.Net Core Web项目上从 Html 生成 pdf。我在网上没有找到太多关于此的内容。大多数软件包都没有为 asp.net 核心做好准备。浏览了几天后,我发现了这篇如何在 ASP.NET Core 中将 HTML 导出为 PDF

我已经下载了项目

导出为 pdf 在 chrome 上完美运行,但在Edge上却不行;它只是从未完成出口。

Edge 和 pdf 有什么问题吗?我在 node.js 上没有做太多工作,所以不确定出了什么问题。任何帮助将不胜感激。在这里,我还添加了来自 pdf.js 的代码

module.exports = function (callback, html) { 
    var jsreport = require('jsreport-core')(); 

    jsreport.init().then(function () { 
        return jsreport.render({ 
            template: { 
                content: html, 
                engine: 'jsrender', 
                recipe: 'phantom-pdf' 
            } 
        }).then(function (resp) { 
            callback(null, resp.content.toJSON().data); 
        }); 
    }).catch(function (e) { 
        callback(e, null); 
    }) 
}; 

还有 nodejs 的 package.json

{ 
  "name": "pdf", 
  "version": "1.0.0", 
  "description": "", 
  "main": "index.js", 
  "dependencies": { 
    "jsreport-core": "^1.3.1", 
    "jsreport-phantom-pdf": "^1.4.4", 
    "jsreport-jsrender": "^1.0.2" 
  }, 
  "devDependencies": {}, 
  "scripts": { 
    "test": "echo \"Error: no test specified\" && exit 1" 
  }, 
  "author": "", 
  "license": "ISC" 
} 

更新

@Martin Beeby 在控制器代码上找到问题。以下代码不适用于 MS Edge

public class HomeController : Controller
{
    [HttpGet]
    public async Task<IActionResult> Index([FromServices] INodeServices nodeServices)
    {
        HttpClient hc = new HttpClient();
        var htmlContent = await hc.GetStringAsync($"http://{Request.Host}/report.html");

        var result = await nodeServices.InvokeAsync<byte[]>("./pdf", htmlContent);

        HttpContext.Response.ContentType = "application/pdf";

        HttpContext.Response.Headers.Add("x-filename", "report.pdf");
        HttpContext.Response.Headers.Add("Access-Control-Expose-Headers", "x-filename");
        HttpContext.Response.Body.Write(result, 0, result.Length);
        return new ContentResult();
    }
}
4

1 回答 1

1

如果将控制器代码更改为:

public async Task<IActionResult> Index([FromServices] INodeServices nodeServices)
{
    HttpClient hc = new HttpClient();
    var htmlContent = await hc.GetStringAsync($"http://{Request.Host}/report.html");

    var result = await nodeServices.InvokeAsync<byte[]>("./pdf", htmlContent);

    return File(result, "application/pdf", "report.pdf");
}

然后它在 Chrome 中运行并提示在 Edge 中下载。

于 2017-07-31T20:04:52.053 回答