导航
导航
文章目录
  1. 灵感来源
  2. 项目初始构建
    1. 项目文件解释
  3. 基本页面实现
  4. 创建配置路由
  5. 怎么画图
    1. 几点说明
  • 实现登录功能
  • 项目发布
  • 基于vue、vuex、vue-router、echarts搭建的数据展示平台

    真的好久没有更新博客了,但是我最近并没有偷懒哦,一直在学习vue这个框架,并且用它做了一个小项目,现在就给大家分享一下我的这个还比较有意思的小项目,项目是基于vue2.0开发的。

    灵感来源

    这是一个数据可视化相关的项目,作为一个学生班主任,需要对班上同学的各方面的情况都有所了解,于是我便做了一个问卷调查来了解学生各方面的情况。然后我又想到可以分析我们班的群聊记录呀,根据群聊记录可以得到班上同学之间的亲密度和班级群聊活跃度等信息。自然而然,我就想着可以搭建一个平台来展示这些数据,既然是数据当然是以图表的方式来展示更加直观,然后折中选择了echarts这个图表库。至于为什么要选择用vue这个插件,之前只是觉得学习了vue刚好可以练练手,做完之后发现vue真的很轻量也很好上手,结合vuex和vue-router基本能完成我项目中的所有需求。

    在线展示:http://119.29.57.165:8080/family (请用电脑打开,还没适配移动端)
    源码:https://github.com/hieeyh/tong2-family
    本教程是基于你已经有一定vue基础之上的,如果你还不了解什么是vue建议先去学习一下

    项目初始构建

    首先全局安装vue-cli,vue-cli是vue自己的项目构建工具,几个简单的步骤就可以帮助你快速构建一个vue项目。

    1
    npm install -g vue-cli

    然后,利用vue-cli构建一个vue项目

    1
    2
    3
    4
    5
    # 创建一个基于 "webpack" 模板的新项目
    $ vue init webpack family
    # 安装项目依赖
    $ cd family
    $ npm install

    项目文件解释

    • build中是webpack基本配置文件,开发环境配置文件,生产环节配置文件
    • node_modules是各种依赖模块
    • src中是vue组件及入口文件
    • static中放置静态文件(群聊分析之后得到的json数据就放在这里)
    • index.html是页面入口文件

    基本页面实现

    项目创建好之后,就开始实现自己想要的页面了,修改src文件夹下的App.vue文件,如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    <template>
    <div id="#app">
    <!-- 导航栏 -->
    <my-head></my-head>
    <my-nav></my-nav>
    <transition>
    <router-view></router-view>
    </transition>
    <my-foot></my-foot>
    </div>
    </template>
    <script>
    import myHead from './components/header'
    import myNav from './components/nav'
    import myFoot from './components/foot'
    export default {
    name: 'app',
    components: {
    myHead,
    myNav,
    myFoot
    }
    }
    </script>

    myHead组件是页面头部,myNav组件是页面左侧导航栏,myFoot是页面底部,router-view组件是vue-router中渲染路径匹配到的视图组件。每个组件的具体实现可以去github项目地址去看源码。

    创建配置路由

    显然,我要做的是一个单页面应用,要用到vue-router,先安装vue-router,输入如下命令:

    1
    npm install --save vue-router

    然后,在src文件夹下面的main.js文件中添加路由相关的代码,如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    import Vue from 'vue'
    import App from './App'
    import VueRouter from 'vue-router'
    Vue.use(VueRouter)
    // 定义路由组件
    const Worldcloud = require('./components/cloud.vue')
    const Building = require('./components/building.vue')
    const Canteen = require('./components/canteen.vue')
    const Selfstudy = require('./components/selfstudy.vue')
    const Difficult = require('./components/difficult.vue')
    const Interest = require('./components/interest.vue')
    const Bedroom = require('./components/bedroom.vue')
    const Graduate = require('./components/graduate.vue')
    const Getup = require('./components/getup.vue')
    const Gotobed = require('./components/gotobed.vue')
    const Eat = require('./components/eat.vue')
    const Amuse = require('./components/amuse.vue')
    const Single = require('./components/single.vue')
    const Chat = require('./components/chat.vue')
    const Onlyme = require('./components/onlyme.vue')
    // 定义路由,配置路由映射
    const routes = [
    { path: '/', redirect: '/wordcloud' },
    { path: '/wordcloud', component: Worldcloud },
    { path: '/building', component: Building },
    { path: '/canteen', component: Canteen },
    { path: '/selfstudy', component: Selfstudy },
    { path: '/difficult', component: Difficult },
    { path: '/interest', component: Interest },
    { path: '/bedroom', component: Bedroom },
    { path: '/graduate', component: Graduate },
    { path: '/getup', component: Getup },
    { path: '/gotobed', component: Gotobed },
    { path: '/eat', component: Eat },
    { path: '/amuse', component: Amuse },
    { path: '/single', component: Single },
    { path: '/chat', component: Chat },
    { path: '/onlyme', component: Onlyme }
    ]
    new Vue({
    el: '#app',
    template: '<App/>',
    components: { App },
    router
    })

    从路由映射的配置中可以看出,访问网站的根路由会直接跳转到/wordcloud。路由映射的组件中用到了百度的echarts库来画图,这是一个很好用的图表库。

    怎么画图

    怎么用echarts画图呢?其实官网上有很多实例,下面以bedroom.vue组件为例来简单说明,bedroom.vue代码如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    <template>
    <div class="main_content">
    <div id="bedroom"></div>
    </div>
    </template>
    <script>
    import echarts from 'echarts'
    export default {
    data() {
    return {
    chart: null,
    opinion: ['学习氛围差', '学习氛围一般', '学习氛围很好'],
    opinionData: [
    {value:26, name:'学习氛围差'},
    {value:31, name:'学习氛围一般'},
    {value:8, name:'学习氛围很好'}
    ]
    }
    },
    methods: {
    drawPie (id) {
    this.chart = echarts.init(document.getElementById(id))
    this.chart.setOption({
    title: {
    text: '寝室学习氛围情况调查',
    left: 'center',
    top: 10,
    textStyle: {
    fontSize: 24,
    fontFamily: 'Helvetica',
    fontWeight: 400
    }
    },
    tooltip: {
    trigger: 'item',
    formatte: "{b}: {c} ({d}%)"
    },
    toolbox: {
    feature: {
    saveAsImage: {},
    dataView: {}
    },
    right: 15,
    top: 10
    },
    legend: {
    orient: 'vertical',
    left: 5,
    top: 10,
    data: this.opinion,
    },
    series: [
    {
    name: '寝室学习氛围',
    type: 'pie',
    radius: ['50%', '70%'],
    center: ['50%', '60%'],
    avoidLabelOverlap: false,
    label: {
    emphasis: {
    show: true,
    textStyle: {
    fontSize: '24',
    fontWeight: 'bold'
    }
    }
    },
    labelLine: {
    normal: {
    show: false
    }
    },
    data: this.opinionData,
    itemStyle: {
    emphasis: {
    shadowBlur: 10,
    shadowOffset: 0,
    shadowColor: 'rgba(0, 0, 0, 0.5)'
    }
    }
    }
    ]
    })
    }
    },
    mounted() {
    this.$nextTick(function() {
    this.drawPie('bedroom')
    })
    }
    }
    </script>
    <style scoped>
    #bedroom {
    position: relative;
    left: 50%;
    margin-left: -400px;
    margin-bottom: 70px;
    width: 800px;
    height: 600px;
    border: solid #D01257 1px;
    box-shadow: 0 0 8px #FB90B7;
    border-radius: 10px;
    }
    </style>

    这是一个vue的单文件组件,script中,首先导入echarts库,前提是已经安装了echarts库,输入以下命令安装:

    1
    npm install --save echarts

    data对象中是画图要用到的一些数据,drawpie方法用来画图,接收一个DOM对象,然后在mounted构子函数中调用drawpie即可。

    几点说明

    1. drawpie方法接收的DOM对象需要有确定的宽高,否则图像不显示
    2. mounted中要包含vm.$nextTick才能保证该实例已经插入文档
    3. 想要进一步了解echarts画图相关的可以看看我的另一篇博客echarts画图实例讲解

    实现登录功能

    登录功能基于vuex(vue状态管理)和浏览器的sessionStorage实现的。首先在src文件夹下新建store文件夹,存放vuex的store(仓库),新建三个文件store.js、login.js、user.js。login.js中存储登录状态,user.js中存储用户登录信息,store.js加载login和user模块。

    注意:在store.js中要引入babel-polyfill(先安装),否则会报错,报错原因是Babel默认只转换新的JavaScript句法,而不转换新的API,比如Iterator、Generator、Set、Maps、Promise等全局对象,以及一些定义在全局对象上的方法。所以必须使用babel-polyfill,为当前环境提供一个垫片。

    然后修改main.js文件,引入store:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    import store from './store/store'
    ...
    ...
    new Vue({
    el: '#app',
    template: '<App/>',
    components: { App },
    router,
    store
    })

    修改App.vue文件,如下:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    <template>
    <div id="#app">
    <!-- 导航栏 -->
    <my-head></my-head>
    <my-nav></my-nav>
    <transition>
    <router-view></router-view>
    </transition>
    <my-mask v-if="canlogin"></my-mask>
    <my-login v-if="canlogin"></my-login>
    <my-foot></my-foot>
    </div>
    </template>
    <script>
    ...
    import myMask from './components/mask'
    import myLogin from './components/login'
    export default {
    ...
    data() {
    return {
    canlogin: false
    }
    },
    computed: {
    canlogin() {
    return this.$store.state.login.islogin
    }
    }
    }
    </script>

    到此,就基本上大功告成了,在命令行中输入 npm run dev预览一下。

    项目发布

    项目可以在本地预览了,但是要怎么发布到网上呢?首先,在命令行中输入

    1
    npm run build

    会生成一个dist文件夹,该文件夹中就是我们可以用来发布的代码,直接将代码上传到你的服务器上就可以啦。

    本文总阅读量: