仅在野生动物园浏览器中出现错误“ TypeError:undefined不是对象(正在评估'navigator.clipboard.writeText')”。我正在传递当前链接。可能是什么问题呢?
copyLink = e => {
e.preventDefault();
console.log(document.location.href)
navigator.clipboard
.writeText(document.location.href)
.then(() => {
this.setState({
urlIsCopied: true
});
})
.catch(e => console.error(e));
};