我在python buildpack中有多个屏幕(即页面) - watson服务应用程序。我正在尝试创建一个到另一个屏幕的简单超链接。 Bluemix部署在designer-index.html启动应用程序。 appfile structure
我正在使用此来源获取应用中的超链接: xxxxx-xxxxx.mybluemix.net/templates/vehicle-selector.html
目前我收到404 - 在服务器上找不到请求的URL。 我错过了上下文根标记吗?
答案 0 :(得分:1)
templates
目录中的文件通常会呈现
@app.route('/vehicle')
def showVehicle():
return render_template('vehicle-selector.html')
静态文件进入static
目录