def year_archive(requsst,year):
if str(year) != "2025":
y = str(year) + ".html"
filepath = os.path.join(settings.BASE_DIR,"helloworld","temp",y)
with open(filepath) as f:
content = f.read()
return HttpResponse(content)
else:
return HttpResponse("這是未來")
也可以在函數內避免路由沖突[開心]
承擔因您的行為而導致的法律責任,
本站有權保留或刪除有爭議評論。
參與本評論即表明您已經閱讀并接受
上述條款。