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

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

数据来源

(以下数据仅供参考)

脚本文件: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) => {                    const 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/

你可能感兴趣的文章
php7和PHP5对比的新特性和性能优化
查看>>
PHP7安装pdo_mysql扩展
查看>>
PHP7实战开发简单CMS内容管理系统(7) 后台登录架构 用户登录校验
查看>>
php7,从phpExcel升级到PhpSpreadsheet
查看>>
PHP8中match新语句的操作方法
查看>>
PHP:第一章——PHP中常量和预定义常量
查看>>
PHP:第一章——PHP中的位运算
查看>>
phpcms
查看>>
phpcms 2008 product.php pagesize参数代码注射漏洞
查看>>
phpcms V9 自定义添加 全局变量{DIY_PATH}方法
查看>>
Redis五种核心数据结构的基本使用与应用场景
查看>>
PHPCMS多文件上传和上传数量限制
查看>>
phpEnv的PHP集成环境
查看>>
PHPExcel导入导出 若在thinkPHP3.2中使用(无论实例还是静态调用(如new classname或classname::function)都必须加反斜杠,因3.2就命名空间,如/c...
查看>>
PHPMailer发送邮件
查看>>
phpmailer发送邮件,可以带附件
查看>>
phpmyadmin 安装
查看>>
phpmyadmin数据库建表及插入
查看>>
phprpc简单使用
查看>>
phpstorm中Xdebug的使用
查看>>