我自己在学习python,用python做一个小的HTML网站。有人能解释一下下面两个应用程序的区别吗?
这样写是行不通的。(这是一个例子,我从谷歌的顶部结果)
@app.route('/index')
def index():
return render_template('index.html')
不工作
但是当我包含完整的链接。html
@app.route('/index.html')
def index():
return render_template('index.html')
工作吗?
好的,假设你有index.html和index.png,你的代码不知道需要哪个文件。即使您只有一个文件,阻止您的代码打开其他文件也是一种安全。文件扩展名是文件的一部分。