python可以快速搭建服务器。本文纯粹个人记录。
搞起服务器
下面命令即可搞起服务器。
python -m python -m SimpleHTTPServer 8080
服务器目录就是当前目录。
建立服务器入口文件index.html
<!DOCTYPE html>
<html>
<body>
<p>
JavaScript 能够直接写入 HTML 输出流中:
</p>
<script>
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph.</p>");
</script>
<p>
您只能在 HTML 输出流中使用 <strong>document.write</strong>。
如果您在文档已加载后使用它(比如在函数中),会覆盖整个文档。
</p>
</body>
</html>
浏览器访问服务器
在浏览器输入http://localhost:8080/ 完成访问
python服务器官网页:https://hg.python.org/cpython/file/2.7/Lib/BaseHTTPServer.py