如何在reactjs中打断文本?

问题描述

需要将以下文本复制到剪贴板,但我认为由于我的 inputRef 行没有中断,有人可以帮助如何使用 textarea 而不是这个吗?

copyCustomerDetails = () =>
    let text = `Hi :${name} \n Mobile Number: ${mobileNo} \n HallNumber: ${Label} \n City:${state} `;
    console.log("text",text);
    
    this.inputRef.current.value = text;
    this.inputRef.current.select();
    document.execCommand("copy");
    message.success("Customer Details copied to clipboard"); };

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)