gpt4 book ai didi

javascript - 提供的元素不在文档中 - Reactjs

转载 作者:行者123 更新时间:2023-12-01 02:37:02 24 4
gpt4 key购买 nike

我正在尝试将 HTML 发票作为图像发送给用户。

为此目的,我使用 html2canvas 库,但它不断给我错误:

Provided element is not within a Document

这是我在 componentDidMount() 中尝试执行的操作

html2canvas(document.getElementById('invoice'), {
logging: true,
profile: true,
useCORS: true}).then(function(canvas) {
var data = canvas.toDataURL('image/jpeg', 0.9);
var src = encodeURI(data);
console.log(src);
});

并且 invoice 元素确实存在于 DOM 中。

可能出了什么问题?

最佳答案

也许尝试使用 refs 捕获元素.

所以你的组件将如下所示:

class Invoice extends React.Component {
componentDidMount(){
html2canvas(this.invoice, {
logging: true,
profile: true,
useCORS: true}).then(function(canvas) {
var data = canvas.toDataURL('image/jpeg', 0.9);
var src = encodeURI(data);
console.log(src);
});
}
render(){
return <div ref={r => this.invoice = r}>....</div>
}
}

关于javascript - 提供的元素不在文档中 - Reactjs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47834008/

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