结构:
/www
|
|-- /static
| |
| |-- echarts.js(当然还有echarts原dist目录下的文件(夹))
|-- /templates
| |-- index.html
|-- app.py
|-- create_db.py
定义了两个路由:'/'和'/weather',后一个用于处理ajax,返回json格式。形如:
{month:['1月','2月',...],evaporation:[3.1, 4, 4.6, ...],precipitation:[...]}
值得注意的是导入echarts.js时使用了url_for函数。初时,我使用了<code>src="js/echarts.js"</code>,老是导入不了!原因不详!
index.html文件如下: