Html2pdf无法使用跨源iframe

时间:2017-10-23 10:50:45

标签: javascript jquery iframe powerbi powerbi-embedded

我已将power bi报告嵌入到我的网页中。我想将包含此iframe的div转换为PDF。我已将iframe的sandbox属性设置为allow-same-origin allow-scripts

report.on('rendered', function (event) {
   $("#reportContainer > iframe").attr('sandbox', 'allow-same-origin allow-scripts');
});

html2canvas(document.getElementById('reportContainer'), {
            onrendered: function (canvas) {
                document.body.appendChild(canvas);
            },
            width: 300,
            height: 300
});

但iframe仍然是空白网页。为什么会这样?

0 个答案:

没有答案