gpt4 book ai didi

pdf - 通过 grunt-contrib-connect 在浏览器中显示 PDF

转载 作者:行者123 更新时间:2023-12-04 12:47:42 27 4
gpt4 key购买 nike

我正在运行一个 AngularJS 应用程序,我正在使用 grunt-contrib-connect插件来托管我的东西。我想在浏览器中访问一些 PDF 文件(在所有这些文件中都经过测试),但页面保持空白。不过,它确实显示了正确的页数。我已经使用 Word 和 Pages 从 .doc 文件导出 PDF,但结果保持不变。

我写了这个小中间件片段来确保设置了标题(根据 Chrome 的网络选项卡,它们是),但页面保持空白。有什么帮助吗?

在我的 Gruntfile 中;

grunt.initConfig({
settings: {}, // ...
connect: {
livereload: {
middleware: function(connect) {
var middlewares = [];
// Other middlewares
middlewares.push(function (req, res, next) {
if (~req.url.indexOf('.pdf')) {
res.setHeader('Content-type', 'application/pdf');
}
return next();
});

return middlewares;
}
}
}
});

最佳答案

好像grunt-contrib-connect提供二进制文件时出现问题:https://github.com/gruntjs/grunt-contrib-connect/issues/142

关于pdf - 通过 grunt-contrib-connect 在浏览器中显示 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23538524/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com