Den besten Weg gefunden, es zu tun. Ich meine den schnellsten Weg: w3school
https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
Innerhalb einer Reaktionsfunktionskomponente. Erstellen Sie eine Funktion mit dem Namen handleCopy:
function handleCopy() {
// get the input Element ID. Save the reference into copyText
var copyText = document.getElementById("mail")
// select() will select all data from this input field filled
copyText.select()
copyText.setSelectionRange(0, 99999)
// execCommand() works just fine except IE 8. as w3schools mention
document.execCommand("copy")
// alert the copied value from text input
alert(`Email copied: ${copyText.value} `)
}
<>
<input
readOnly
type="text"
value="exemple@email.com"
id="mail"
/>
<button onClick={handleCopy}>Copy email</button>
</>
Wenn Sie React nicht verwenden, haben w3schools auch eine coole Möglichkeit, dies mit dem enthaltenen Tooltip zu tun: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_copy_clipboard2
Wenn Sie React verwenden, sollten Sie Folgendes tun: Verwenden Sie Toastify, um die Nachricht zu benachrichtigen.
https://github.com/fkhadra/react-toastify Dies ist die Bibliothek, die sehr einfach zu bedienen ist. Nach der Installation können Sie möglicherweise diese Zeile ändern:
alert(`Email copied: ${copyText.value} `)
Für so etwas wie:
toast.success(`Email Copied: ${copyText.value} `)
Wenn Sie es verwenden möchten, vergessen Sie nicht, toastify zu installieren. importiere ToastContainer und auch Toast CSS:
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
und fügen Sie den Toastbehälter im Rücklauf hinzu.
import React from "react"
import { ToastContainer, toast } from "react-toastify"
import "react-toastify/dist/ReactToastify.css"
export default function Exemple() {
function handleCopy() {
var copyText = document.getElementById("mail")
copyText.select()
copyText.setSelectionRange(0, 99999)
document.execCommand("copy")
toast.success(`Hi! Now you can: ctrl+v: ${copyText.value} `)
}
return (
<>
<ToastContainer />
<Container>
<span>E-mail</span>
<input
readOnly
type="text"
value="myemail@exemple.com"
id="mail"
/>
<button onClick={handleCopy}>Copy Email</button>
</Container>
</>
)
}