open文件,页面展示的空白页,没有加载完成。是css、js不支持吗

来源:2-4 请求处理

慕先生8842333

2021-10-06 01:29

# index.html文件 

<!DOCTYPE html>    
<html dir="ltr">    
<head>    
<meta charset="utf-8">    
<title>Allure Report</title>    
<link rel="favicon" href="favicon.ico?v=2">    
<link rel="stylesheet" type="text/css" href="styles.css">    
<link rel="stylesheet" href="plugins/screen-diff/styles.css">    
</head>    
<body>    
<div id="alert"></div>    
<div id="content">    
<span class="spinner">    
<span class="spinner__circle"></span>    
</span>    
</div>    
<div id="popup"></div>    
<script src="app.js"></script>    
<script src="plugins/behaviors/index.js"></script>    
<script src="plugins/packages/index.js"></script>    
<script src="plugins/screen-diff/index.js"></script>    
</body>    
</html>

web.py代码,打开html文件空白,没有数据渲染加载。不用这个py启动文件是正常的

import web

urls = (
    '/(.*)', 'hello'
)
app = web.application(urls, globals())

class hello:
    def GET(self, name):
       return open(r'index.html', 'r').read().encode('utf-8')

if __name__ == "__main__":
    app.run()


写回答 关注

1回答

  • 慕梦前来
    2022-05-05 19:36:38

    应该是文件没有加载到吧

python-web.py开发入门

web.py开发入门入门教程,讲解一个你最快能学会的web开发的框架

58639 学习 · 106 问题

查看课程

相似问题