如何为$ window.open添加自定义标题

时间:2017-09-26 16:02:18

标签: javascript angularjs window.open

我正在尝试实现pdf预览功能。

这是我的角度js代码:



 //preview document
        FileUploader.prototype.preview = function (file) {
            var ctrl = this;
            var pdfFile = file;
            var file = new Blob([(pdfFile)], { type: 'application/pdf' });
            var fileURL = URL.createObjectURL(file);
            console.log(fileURL);
            ctrl.content = ctrl.services.$sce.trustAsResourceUrl(fileURL);
            var myWindow = ctrl.services.$window.open(ctrl.content);
            myWindow.document.title = "custom file name";
        }




我可以预览文档,但我无法为$window.open

提供自定义标题

enter image description here

我认为如果文档属性中的标题为空,则会自动设置唯一标识符。

enter image description here

如何覆盖标题?

0 个答案:

没有答案