时间:2023-06-06 16:00:02 | 来源:网站运营
时间:2023-06-06 16:00:02 来源:网站运营
web框架-模板替换功能:模板替换功能:import time# 获取首页数据def index(): # 状态信息 status = "200 OK" # 响应头信息 response_header = [("Server", "DWS/1.1")] # 1. 打开指定模板文件,读取模板文件中的数据 with open("template/index.html", "r", encoding="utf-8") as file: file_data = file.read() # 2. 查询数据库,把模板里面的模板变量{%content%}替换成从数据库里面查询的数据 # 获取当前时间,用时间来模拟从数据库中查询数据 data = time.ctime() response_body = file_data.replace("{%content%}", data) # 把状态信息、响应头信息、处理后的数据返回给web服务器 return status, response_header, response_body
关键词:替换,功能,模板