可可西

python3启动一个本地http服务器

在windows中,使用python版本为Python 3.6.3

 

编写index.html网页

在当前目录F:\httpTest下,新建index.html,内容如下:

<!DOCTYPE html>
   <head>
      <meta charset="utf-8">
      <title>Http Test</title>
      <style>
         div {
            font-size : 30px; text-align : center; color:blue;
         }
      </style>
   </head>
   <body>
      <div id="textcontent"></div>
      <script>
         document.getElementById("textcontent").innerHTML = "Hello World!";
      </script>
   </body>
</html>

 

启动http服务器

在当前目录F:\httpTest下,执行C:\Python36-32\python.exe -m http.server

 

访问本地http服务器

打开chrome浏览器,访问http://localhost:8000/

 

posted on 2024-12-26 19:37  可可西  阅读(22)  评论(0编辑  收藏  举报

导航