javascript - What are the steps for pasting images in the general article editor?
三叔2017-06-26 10:52:41
0
1
756
Our company needs to use an editor, in which pictures need to be pasted and uploaded to the server; I want to know how to paste screenshots and then upload them to the server, please let me know! !
Listen to the paste event in input or textarea.
Get the image file from the clipboard;
Use FileReader to read the file dataurl for preview, if needed.
Call the upload interface and upload directly.