我正在尝试使用命令bokeh serve --show LightDogs
与Bokeh一起提供我的Flask应用程序,我遇到的问题是它无法访问主页以外的任何页面,并在终端中显示404 GET /about (::1) 0.38ms
。我曾尝试将/ LightDogs
添加到我的路线,但没有成功。
├── LightDogs
│ ├── DATA
│ │ ├── l_out.csv
│ │ └── t_out.csv
│ ├── Dashboards.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── Dashboards.cpython-36.pyc
│ │ ├── __init__.cpython-36.pyc
│ │ ├── create_db.cpython-36.pyc
│ │ ├── helpers.cpython-36.pyc
│ │ ├── models.cpython-36.pyc
│ │ └── routes.cpython-36.pyc
│ ├── data_preprocess.py
│ ├── helpers.py
│ ├── main.py
│ ├── routes.py
│ ├── site.db
│ ├── static
│ │ ├── css
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── jqcloud.min.css
│ │ │ └── main.css
│ │ └── js
│ │ ├── bootstrap.min.js
│ │ ├── jqcloud.min.js
│ │ └── script.js
│ └── templates
│ ├── about.html
│ ├── analysis.html
│ ├── embed.html
│ ├── home.html
│ ├── index.html
│ ├── insights.html
│ ├── prediction.html
│ └── timeline.html
└── __pycache__
└── models.cpython-36.pyc
有人知道如何加载其他页面吗? (下一个问题:自定义CSS ...)