我是烧瓶的新手,并使用它在“localhost:5000/”处提供 index.html。目前我只有 3 个文件:index.html、angular.js 和 app.js;并且它们都在同一个文件夹中。我将 index.html 服务为:
@app.route('/')
def index():
return make_response(open('index.html').read())
我想在 index.html 中包含 angular.js 和 app.js。我试过这个:
<script src="angular.js"></script>
<script src="app_controller.js"></script>
但它不包括这两个文件(我从“查看页面源”中检查过)。烧瓶是否有默认目录从其中获取包含文件?我应该如何实现这一目标?