在Web应用程序上使用PyperClip

时间:2015-10-21 13:24:17

标签: python pyperclip

我正在使用pyperclip.py使用表单在我的网络应用程序中获取电子邮件地址列表,以便用户可以通过剪贴板在本地粘贴它。它在当地完美运作。但是,当它在服务器(带有Apache2的Linux 14.04)上运行并通过浏览器从客户端系统访问时,它不会复制。如何将其复制到客户端系统的剪贴板?

现在我只是想让它发挥作用,因此我只使用一条线。我使用pyclclip 1.5.15与xclip和Python 3.4。服务器正在运行Linux 14.04,客户端已经注意到使用谷歌浏览器和IE浏览器在Windows 8和Windows 10上出现问题。目前尚未测试其他操作系统。

pyperclip.copy("HELLO") 

1 个答案:

答案 0 :(得分:1)

由于我找不到关于这个主题的很多细节,我以为我会回答我的问题。不幸的是,浏览器似乎不支持pyperclip,因此需要使用HTML + Javascript(在pyperclip上有意义)。首先,将Django Template var添加为HTML属性,您可以使用Javascript来处理复制功能。下面是一个如何执行此操作的示例,提前抱歉,因为stackoverflow正在为示例提供一些奇怪的格式。它还假设您有一个下面的表格,其id为email_list_clipboard。我希望这可以帮助其他可能遇到类似问题的人!

示例:

    <html email-list="{{request.session.email_list}}">
    <script>
        $(document).ready(function () {
            function copyTextToClipboard(text) {
                var textArea = document.createElement("textarea");

                // Place in top-left corner of screen regardless of scroll position.
                textArea.style.position = 'fixed';
                textArea.style.top = 0;
                textArea.style.left = 0;

                textArea.style.width = '2em';
                textArea.style.height = '2em';

                // We don't need padding, reducing the size if it does flash render.
                textArea.style.padding = 0;

                textArea.style.border = 'none';
                textArea.style.outline = 'none';
                textArea.style.boxShadow = 'none';

                textArea.style.background = 'transparent';

                textArea.value = text;

                document.body.appendChild(textArea);

                textArea.select();

                try {
                    var successful = document.execCommand('copy');
                    var msg = successful ? 'successful' : 'unsuccessful';
            console.log('Copying text command was ' + msg);
                } catch (err) {
                    console.log('Oops, unable to copy');
                }

                document.body.removeChild(textArea);
            }

            // set things up so my function will be called when field_three changes
            $('#email_list_clipboard').click(function (click) {
                event.preventDefault();
                copyTextToClipboard(document.documentElement.getAttribute("email-list"));
    });

</script>