我已将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仍然是空白网页。为什么会这样?