繁体   English   中英

PyQt4 字符编码:“ascii”编解码器无法编码字符

[英]PyQt4 character encoding: 'ascii' codec can't encode character

尝试使用以下脚本加载页面,以便我可以访问执行 javascript 的页面。 我想登录并查看结果页面 (https://www.thomsononeim.com/v-hom.asp),同时执行了 Javascript。 在 Python 2.7 中,我收到此错误:

回溯(最近一次通话最后):
文件“C:/Python27/Sample Programs/Stupid Test.py”,第 22 行,打印 html UnicodeEncodeError: 'ascii' codec can't encode character u'\xa9' in position 8273: ordinal in range (128)

这是代码:

from __future__ import unicode_literals
from __future__ import print_function
from __future__ import division
import sys
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from PyQt4.QtWebKit import *


class Render(QWebPage):
    def __init__(self, url):
        self.app = QApplication(sys.argv)
        QWebPage.__init__(self)
        self.loadFinished.connect(self._loadFinished)
        self.mainFrame().load(QUrl(url))
        self.app.exec_()

    def _loadFinished(self, result):
        self.frame = self.mainFrame()
        self.app.quit()

url = 'https://www.thomsononeim.com/s-log_in.asp'
r = Render(url)
html = r.frame.toHtml()
print(html)

这应该有效:

print(html.toUtf8())

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM