作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此代码对我不起作用
我想知道一种使用 python 呈现 html 的方法没有 tkinterhtml
加载 google.com
时,出现错误:
Exception in Tkinter callback
Traceback (most recent call last):
File "c:\python scripts\project\file.py", line 10, in search
html = htmlBytes.decode("utf8")
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe7 in position 10955: invalid continuation byte
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\tkinter\__init__.py", line 1921, in __call__
return self.func(*args)
File "c:\python scripts\project\file.py", line 12, in search
html = htmlBytes.decode("utf16")
UnicodeDecodeError: 'utf-16-le' codec can't decode byte 0x3e in position 14624: truncated data
我正在为一个项目工作,并使用 import
关键字启动代码。我的代码不起作用,并在搜索功能完成后关闭窗口。
import urllib.request
import tkinter
from tkinterhtml import HtmlFrame
def search():
url = urlInput.get()
page = urllib.request.urlopen(url)
htmlBytes = page.read()
try:
html = htmlBytes.decode("utf8")
except:
html = htmlBytes.decode("utf16")
frame.set_content(html)
page.close()
screen = tkinter.Tk()
screen.geometry("700x700")
frame = HtmlFrame(screen, horizontal_scrollbar="auto")
urlInput = tkinter.Entry(screen)
urlInput.grid(column=0,row=0,columnspan=10,rowspan=4,sticky="news")
searchBtn = tkinter.Button(screen,text="search",command=search)
searchBtn.grid(row=0,column=11,sticky="news")
screen.mainloop()
最佳答案
tkinter 没有渲染 HTML 的能力。您必须使用第三方库。由于您明确表示不想使用 tkinterhtml,因此您必须找到其他一些第三方渲染器。
关于python - 如何在 python 中呈现 HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71564676/
我是一名优秀的程序员,十分优秀!