not able to execute command window.document.execCommand(“paste”) in brackets

走远了吗. 提交于 2020-01-17 07:57:21

问题


I wrote a plugin in brackets in which I want to copy text from the text box and paste in the current opened document .

window.document.execCommand("copy");

if I use keyboard command+v its working, I am able to paste the text which is copied by the above dom command.

But the same result I'm not able to get by window.document.execCommand("paste"), even though I tried this CommandManager.execute(Commands.EDIT_PASTE) too.

could you help me please.

Regards Ashish.


回答1:


Those commands won't work because Brackets runs in a Chromium webview, and Chromium doesn't permit normal content to access the clipboard programmatically - as a security measure. In Brackets the security rationale isn't really relevant, but someone would need to patch brackets-shell to disable the restriction, and that work hasn't happened yet.

But there's a workaround: Brackets extensions have access to NodeJS, so you can use a Node package like copy-paste to access the clipboard. Check out the source of the extensions Right Click Extended or File Info to Clipboard for examples.



来源:https://stackoverflow.com/questions/23910353/not-able-to-execute-command-window-document-execcommandpaste-in-brackets

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!