我正在使用 wxPython (wxAUI) 编写一个小型报告应用程序。我想将我的数据呈现为 HTML,以显示在 WebView 'widget' 中。我正在寻找一个示例“hello world”片段,它将显示如何在 WebView 小部件中显示/呈现 HTML 字符串 - 但无法找到单个示例 - 并且 WebView 小部件似乎没有很好的文档记录。
有人可以提供一个这样的例子的链接,或者(更好),在这里发布一个简短的片段,展示如何使用 WebView 小部件来呈现 HTML 字符串?
# sample html string to display in WebView widget
html_string = """
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Hello World!</title>
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css" src="main.css"></style>
</head>
<body>
<span id="foo">The quick brown fox jumped over the lazy dog</span>
<script type="text/javascript">
$(document.ready(function(){
$("span#foo").click(function(){ alert('I was clicked!'); });
});
</script>
</body>
</html>
"""