我正在尝试将json字符串复制到clipborad:
export const copyToClipboard = () => {
const text = '{ "name": "hello"}';
const selBox = document.createElement('input');
selBox.style.position = 'fixed';
selBox.style.left = '0';
selBox.style.top = '0';
selBox.style.opacity = '0';
selBox.value = JSON.stringify(text);
console.log(text);
console.log(selBox.value);
document.body.appendChild(selBox);
selBox.select();
document.execCommand('copy');
document.body.removeChild(selBox);
};
问题是,selBox
中的值中包含字符\
。
日志如下:
{ "name": "hello"}
这是text
"{ \"name\": \"hello\"}"
这是selBox
为什么会这样,我该如何解决?
答案 0 :(得分:2)
变量text
已经是字符串,因此不需要JSON.stringify()