无法在Web浏览器中看到Response Body Preview

时间:2017-11-06 19:40:58

标签: html python-2.7 web-services python-requests python-server-pages

 import codecs
 def do_GET_Index(self):

    self.set_HTTP_headers(200)

    HtmlFile3 = codecs.open('server/entry_template.html', 'r','utf-8')
    html_response = HtmlFile3.read()

    self.wfile.write(html_reponse)

我在python服务器ip:10.1.0.1

中运行它们

在我的Firefox中,我输入了 http://10.1.0.1 但是我在浏览器中看不到任何内容。??

我的entry_template.html文件:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

提前致谢!!!

0 个答案:

没有答案