博客
关于我
通过脚本获取数据 新型冠状病毒 2019-nCoV 的相关数据。
阅读量:161 次
发布时间:2019-02-28

本文共 1963 字,大约阅读时间需要 6 分钟。

数据来源。

(以下数据仅供参考)

脚本文件:app.js

const express = require('express');const request = require('request');const axios = require('axios');const fs = require('fs');const app = express();const url = 'https://3g.dxy.cn/newh5/view/pneumonia';const getStatisticsService = (data) => {    let statisticObj = JSON.parse(data.match(/window.getStatisticsService = (.*?)}catch/)[1])    fs.writeFileSync('./data/statistic.json',JSON.stringify(statisticObj,null,2),(err)=>{        console.log('写入成功')    })}const getAreaStat = (data) => {    const areaObj = JSON.parse(data        .match(/window.getAreaStat = (.*?)}catch/)[1])    fs.writeFileSync('./data/province.json', JSON.stringify(areaObj, null, 2), (err) => {        console.log('写入成功')    })}axios.request(url).then(({    data: html}) => {    getStatisticsService(html)    getAreaStat(html);})app.listen(3000, () => {    console.log('app listening port is 3000')})

statistic.json文件:

{  "id": 1,  "createTime": 1579537899000,  "modifyTime": 1580140453000,  "infectSource": "野生动物,可能为中华菊头蝠",  "passWay": "未完全掌握,存在人传人、医务人员感染、一定范围社区传播",  "imgUrl": "https://img1.dxycdn.com/2020/0123/733/3392575782185696736-73.jpg",  "dailyPic": "https://img1.dxycdn.com/2020/0127/350/3393218957833514634-73.jpg",  "summary": "",  "deleted": false,  "countRemark": "",  "confirmedCount": 2857,  "suspectedCount": 5794,  "curedCount": 56,  "deadCount": 82,  "virus": "新型冠状病毒 2019-nCoV",  "remark1": "易感人群: 暂时不明,病毒存在变异可能",  "remark2": "潜伏期: 1~14 天均有,平均 10 天,潜伏期内存在传染性",  "remark3": "",  "remark4": "",  "remark5": "",  "generalRemark": "疑似病例数来自国家卫健委数据,目前为全国数据,未分省市自治区等",  "abroadRemark": ""}

province.json文件:

{    "provinceName": "湖北省",    "provinceShortName": "湖北",    "confirmedCount": 1423,    "suspectedCount": 0,    "curedCount": 45,    "deadCount": 76,    "comment": "",    "cities": [      {        "cityName": "武汉",        "confirmedCount": 698,        "suspectedCount": 0,        "curedCount": 42,        "deadCount": 63      },     ]......}

 

转载地址:http://ilfj.baihongyu.com/

你可能感兴趣的文章
MYSQL高可用集群MHA架构
查看>>
MySQL高级-MySQL并发参数调整
查看>>
MySQL高级-MySQL查询缓存优化
查看>>
MySQL高级-SQL优化步骤
查看>>
MySQL高级-视图
查看>>
MySQL高级-触发器
查看>>
mysql高级查询~分页查询
查看>>
MySQL(2)DDL详解
查看>>
MySQL:MySQL执行一条SQL查询语句的执行过程
查看>>
Mysql:SQL性能分析
查看>>
mysql:SQL按时间查询方法总结
查看>>
MySQL:什么样的字段适合加索引?什么样的字段不适合加索引
查看>>
MySQL:判断逗号分隔的字符串中是否包含某个字符串
查看>>
MySQL:某个ip连接mysql失败次数过多,导致ip锁定
查看>>
Mysql:避免重复的插入数据方法汇总
查看>>
m_Orchestrate learning system---二十二、html代码如何变的容易
查看>>
n 叉树后序遍历转换为链表问题的深入探讨
查看>>
nacos config
查看>>
NacosClient客户端搭建,微服务注册进nacos
查看>>
Nacos原理
查看>>