node vue-admin-template(第一篇)

1凭迹、安裝 nodejs

進入 node 網(wǎng)站:https://nodejs.org/zh-cn/锯梁,下載nodejs

2隙券、安裝 git

進入 git 網(wǎng)站:https://git-scm.com/downloads牙肝,下載git

3唉俗、下載 vue-admin-template(前端)

建議
本項目的定位是后臺集成方案嗤朴,不太適合當基礎模板來進行二次開發(fā)。因為本項目集成了很多你可能用不到的功能虫溜,會造成不少的代碼冗余雹姊。如果你的項目不關注這方面的問題,也可以直接基于它進行二次開發(fā)衡楞。

4吱雏、開始創(chuàng)建項目

我所使用的開發(fā)軟件是JetBrains WebStorm
①下載vue-admin-template
②進入vue-admin-template項目
③初始化vue-admin-template項目
④運行vue-admin-template
啟動成功(1)

啟動成功(2)

5、編輯vue-admin-template項目

(1)找到vue-admin-template/src/router/index.js瘾境,將以下代碼刪除

 {
    path: '/example',
    component: Layout,
    redirect: '/example/table',
    name: 'Example',
    meta: { title: 'Example', icon: 'example' },
    children: [
      {
        path: 'table',
        name: 'Table',
        component: () => import('@/views/table/index'),
        meta: { title: 'Table', icon: 'table' }
      },
      {
        path: 'tree',
        name: 'Tree',
        component: () => import('@/views/tree/index'),
        meta: { title: 'Tree', icon: 'tree' }
      }
    ]
  },
{
    path: '/form',
    component: Layout,
    children: [
      {
        path: 'index',
        name: 'Form',
        component: () => import('@/views/form/index'),
        meta: { title: 'Form', icon: 'form' }
      }
    ]
  },
  {
    path: '/nested',
    component: Layout,
    redirect: '/nested/menu1',
    name: 'Nested',
    meta: {
      title: 'Nested',
      icon: 'nested'
    },
    children: [
      {
        path: 'menu1',
        component: () => import('@/views/nested/menu1/index'), // Parent router-view
        name: 'Menu1',
        meta: { title: 'Menu1' },
        children: [
          {
            path: 'menu1-1',
            component: () => import('@/views/nested/menu1/menu1-1'),
            name: 'Menu1-1',
            meta: { title: 'Menu1-1' }
          },
          {
            path: 'menu1-2',
            component: () => import('@/views/nested/menu1/menu1-2'),
            name: 'Menu1-2',
            meta: { title: 'Menu1-2' },
            children: [
              {
                path: 'menu1-2-1',
                component: () => import('@/views/nested/menu1/menu1-2/menu1-2-1'),
                name: 'Menu1-2-1',
                meta: { title: 'Menu1-2-1' }
              },
              {
                path: 'menu1-2-2',
                component: () => import('@/views/nested/menu1/menu1-2/menu1-2-2'),
                name: 'Menu1-2-2',
                meta: { title: 'Menu1-2-2' }
              }
            ]
          },
          {
            path: 'menu1-3',
            component: () => import('@/views/nested/menu1/menu1-3'),
            name: 'Menu1-3',
            meta: { title: 'Menu1-3' }
          }
        ]
      },
      {
        path: 'menu2',
        component: () => import('@/views/nested/menu2/index'),
        meta: { title: 'menu2' }
      }
    ]
  },
  {
    path: 'external-link',
    component: Layout,
    children: [
      {
        path: 'https://panjiachen.github.io/vue-element-admin-site/#/',
        meta: { title: 'External Link', icon: 'link' }
      }
    ]
  },

則index.js的內容為:

import Vue from 'vue'
import Router from 'vue-router'

Vue.use(Router)

/* Layout */
import Layout from '@/layout'

/**
 * Note: sub-menu only appear when route children.length >= 1
 * Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html
 *
 * hidden: true                   if set true, item will not show in the sidebar(default is false)
 * alwaysShow: true               if set true, will always show the root menu
 *                                if not set alwaysShow, when item has more than one children route,
 *                                it will becomes nested mode, otherwise not show the root menu
 * redirect: noRedirect           if set noRedirect will no redirect in the breadcrumb
 * name:'router-name'             the name is used by <keep-alive> (must set!!!)
 * meta : {
    roles: ['admin','editor']    control the page roles (you can set multiple roles)
    title: 'title'               the name show in sidebar and breadcrumb (recommend set)
    icon: 'svg-name'             the icon show in the sidebar
    breadcrumb: false            if set false, the item will hidden in breadcrumb(default is true)
    activeMenu: '/example/list'  if set path, the sidebar will highlight the path you set
  }
 */

/**
 * constantRoutes
 * a base page that does not have permission requirements
 * all roles can be accessed
 */
export const constantRoutes = [
  {
    path: '/login',
    component: () => import('@/views/login/index'),
    hidden: true
  },

  {
    path: '/404',
    component: () => import('@/views/404'),
    hidden: true
  },

  {
    path: '/',
    component: Layout,
    redirect: '/dashboard',
    children: [{
      path: 'dashboard',
      name: 'Dashboard',
      component: () => import('@/views/dashboard/index'),
      meta: { title: 'Dashboard', icon: 'dashboard' }
    }]
  },
  // 404 page must be placed at the end !!!
  { path: '*', redirect: '/404', hidden: true }
]

const createRouter = () => new Router({
  // mode: 'history', // require service support
  scrollBehavior: () => ({ y: 0 }),
  routes: constantRoutes
})

const router = createRouter()

// Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465
export function resetRouter() {
  const newRouter = createRouter()
  router.matcher = newRouter.matcher // reset router
}

export default router

效果圖:

刪除完后的界面

(2)安裝ES6語法插件

npm install --save es6-promise

(3)編寫Axios 插件

①在vue-admin-template/src/untils中添加http.js:
import Vue from 'vue';
import Axios from 'axios';
import {Promise} from 'es6-promise';

import {MessageBox, Message} from 'element-ui'

Axios.defaults.timeout = 30000; // 1分鐘
Axios.defaults.baseURL = '';

Axios.interceptors.request.use(function (config) {
  // Do something before request is sent
  //change method for get
  /*if(process.env.NODE_ENV == 'development'){
      config['method'] = 'GET';
      console.log(config)
  }*/
  if (config['MSG']) {
    // Vue.prototype.$showLoading(config['MSG']);
  } else {
    // Vue.prototype.$showLoading();
  }
  // if(user.state.token){//用戶登錄時每次請求將token放入請求頭中
  //   config.headers["token"] = user.state.token;
  // }

  if (config['Content-Type'] === 'application/x-www-form-urlencoded;') {
//默認發(fā)application/json請求歧杏,如果application/x-www-form-urlencoded;需要使用transformRequest對參數(shù)進行處理
    /*config['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';*/
    config.headers['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
    config['transformRequest'] = function (obj) {
      var str = [];
      for (var p in obj)
        str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
      return str.join("&")
    };
  }
  //config.header['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';

  return config;
}, function (error) {
  // Do something with request error
  // Vue.$vux.loading.hide()
  return Promise.reject(error);
});

Axios.interceptors.response.use(
  response => {
    // Vue.$vux.loading.hide();
    return response.data;
  },
  error => {
    // Vue.$vux.loading.hide();
    if (error.response) {
      switch (error.response.status) {
        case 404:
          Message({
            message: '' || 'Error',
            type: 'error',
            duration: 5 * 1000
          })
          break;
        default:
          Message({
            message: '' || 'Error',
            type: 'error',
            duration: 5 * 1000
          })
      }
    } else if (error instanceof Error) {
      console.error(error);
    } else {
      Message({
        message: '' || 'Error',
        type: 'error',
        duration: 5 * 1000
      })
    }

    return Promise.reject(error.response);
  });

export default Vue.prototype.$http = Axios;
②配置axios代理:
添加部分為:
vue.config.js
修改完vue.config.js的代碼為:
vue-admin-template/vue.config.js:
'use strict'
const path = require('path')
const defaultSettings = require('./src/settings.js')

function resolve(dir) {
  return path.join(__dirname, dir)
}

const name = defaultSettings.title || 'vue Admin Template' // page title

// If your port is set to 80,
// use administrator privileges to execute the command line.
// For example, Mac: sudo npm run
// You can change the port by the following methods:
// port = 9528 npm run dev OR npm run dev --port = 9528
const port = process.env.port || process.env.npm_config_port || 9528 // dev port

// All configuration item explanations can be find in https://cli.vuejs.org/config/
module.exports = {
  /**
   * You will need to set publicPath if you plan to deploy your site under a sub path,
   * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
   * then publicPath should be set to "/bar/".
   * In most cases please use '/' !!!
   * Detail: https://cli.vuejs.org/config/#publicpath
   */
  publicPath: '/',
  outputDir: 'dist',
  assetsDir: 'static',
  lintOnSave: process.env.NODE_ENV === 'development',
  productionSourceMap: false,
  devServer: {
    port: port,
    open: true,
    overlay: {
      warnings: false,
      errors: true
    },
    proxy: {
      // change xxx-api/login => mock/login
      // detail: https://cli.vuejs.org/config/#devserver-proxy
      [process.env.VUE_APP_BASE_API]: {
        target: `http://127.0.0.1:${port}/mock`,
        changeOrigin: true,
        pathRewrite: {
          ['^' + process.env.VUE_APP_BASE_API]: ''
        }
      },
      ['/api']: {
        target: `http://127.0.0.1:3000`,
        changeOrigin: true,
        pathRewrite: {
          ['^' + '/api']: ''
        }
      }
    },
    after: require('./mock/mock-server.js')
  },
  configureWebpack: {
    // provide the app's title in webpack's name field, so that
    // it can be accessed in index.html to inject the correct title.
    name: name,
    resolve: {
      alias: {
        '@': resolve('src')
      }
    }
  },
  chainWebpack(config) {
    config.plugins.delete('preload') // TODO: need test
    config.plugins.delete('prefetch') // TODO: need test

    // set svg-sprite-loader
    config.module
      .rule('svg')
      .exclude.add(resolve('src/icons'))
      .end()
    config.module
      .rule('icons')
      .test(/\.svg$/)
      .include.add(resolve('src/icons'))
      .end()
      .use('svg-sprite-loader')
      .loader('svg-sprite-loader')
      .options({
        symbolId: 'icon-[name]'
      })
      .end()

    // set preserveWhitespace
    config.module
      .rule('vue')
      .use('vue-loader')
      .loader('vue-loader')
      .tap(options => {
        options.compilerOptions.preserveWhitespace = true
        return options
      })
      .end()

    config
    // https://webpack.js.org/configuration/devtool/#development
      .when(process.env.NODE_ENV === 'development',
        config => config.devtool('cheap-source-map')
      )

    config
      .when(process.env.NODE_ENV !== 'development',
        config => {
          config
            .plugin('ScriptExtHtmlWebpackPlugin')
            .after('html')
            .use('script-ext-html-webpack-plugin', [{
              // `runtime` must same as runtimeChunk name. default is `runtime`
              inline: /runtime\..*\.js$/
            }])
            .end()
          config
            .optimization.splitChunks({
            chunks: 'all',
            cacheGroups: {
              libs: {
                name: 'chunk-libs',
                test: /[\\/]node_modules[\\/]/,
                priority: 10,
                chunks: 'initial' // only package third parties that are initially dependent
              },
              elementUI: {
                name: 'chunk-elementUI', // split elementUI into a single package
                priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
                test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
              },
              commons: {
                name: 'chunk-commons',
                test: resolve('src/components'), // can customize your rules
                minChunks: 3, //  minimum common number
                priority: 5,
                reuseExistingChunk: true
              }
            }
          })
          config.optimization.runtimeChunk('single')
        }
      )
  }
}

(4)在vue-admin-template/src/main.js添加http的路由

import http from './utils/http'
Vue.use(http)

(5)在dashboard中調用接口

添加部分為:

index.js

vue-admin-template/src/views/dashboard/index.vue:

<template>
  <div class="dashboard-container">
    歡迎
  </div>
</template>

<script>
import { mapGetters } from 'vuex'

export default {
  name: 'Dashboard',
  computed: {
    ...mapGetters([
      'name'
    ])
  },
  mounted() {
    this.$http.get('/api/users/add').then(res =>{
      console.log('this.panels',res)
    })
  }
}
</script>

<style lang="scss" scoped>
.dashboard {
  &-container {
    margin: 30px;
  }
  &-text {
    font-size: 30px;
    line-height: 46px;
  }
}
</style>

6、安裝koa-generator

①下載koa-generator:

npm install -g koa-generator

②構建koa2項目(搭建后端項目平臺):

koa2 projectName

成功的信息:

E:\nodejs\vue\vue-admin-template>koa2 projectName

   create : projectName
   create : projectName/package.json
   create : projectName/app.js
   create : projectName/public
   create : projectName/routes
   create : projectName/routes/index.js
   create : projectName/routes/users.js
   create : projectName/views
   create : projectName/views/index.pug
   create : projectName/views/layout.pug
   create : projectName/views/error.pug
   create : projectName/bin
   create : projectName/bin/www
   create : projectName/public/stylesheets
   create : projectName/public/stylesheets/style.css

   install dependencies:
     > cd projectName && npm install

   run the app:
     > SET DEBUG=koa* & npm start projectName

   create : projectName/public/javascripts
   create : projectName/public/images

③進入projectName項目

cd projectName

④初始化projectName項目

npm install

⑤運行projectName項目

npm run dev

成功的信息:

E:\nodejs\vue\vue-admin-template\projectName>npm run dev

> projectName@0.1.0 dev E:\nodejs\vue\vue-admin-template\projectName
> nodemon bin/www

[nodemon] 1.19.4
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node bin/www`

在瀏覽器輸入http://localhoat:3000/寄雀,若有出現(xiàn)以下界面則代表projectName項目搭建成功

http://localhoat:3000/

或者
可以使用基礎模板:projectName
直接下載即可

7得滤、安裝本地mongodb或者在mongodb官網(wǎng)新建免費的云端服務器

數(shù)據(jù)庫代碼(這是我的數(shù)據(jù)庫,若有建此項目時盒犹,需要換成自己的數(shù)據(jù)庫):

mongodb+srv://xdn:<password>@cluster0-h9ngn.azure.mongodb.net/test?retryWrites=true&w=majority

如何創(chuàng)建自己的數(shù)據(jù)庫:

找到mongodb的官網(wǎng)懂更,注冊登錄

登錄成功的mongdb界面

選擇connect,就會出現(xiàn)以下界面

coonect的界面

選擇Connect Your Application急膀,就會出現(xiàn)以下界面

數(shù)據(jù)庫鏈接

8沮协、安裝mongoose

npm install mongoose --save

9、編輯projectName項目

在projectName下創(chuàng)建db目錄:

①在db下創(chuàng)建config.js
projectName/db/config.js:
module.exports = {
    // dbs: 'mongodb://139.159.253.110:27017/test1'
    dbs:'mongodb+srv://xdn:<password>@cluster0-h9ngn.azure.mongodb.net/test?retryWrites=true&w=majority'
}
此處需要修改為上面的數(shù)據(jù)庫鏈接卓嫂,還要將密碼填寫進去
②在db下創(chuàng)建models目錄
在models創(chuàng)建user.js
projectName/db/models/user.js:
const mongoose = require('mongoose')
const feld={
    name: String,
    age: Number,
    //人物標簽
    labels:Number
}
//自動添加更新時間創(chuàng)建時間:
let personSchema = new mongoose.Schema(feld, {timestamps: {createdAt: 'created', updatedAt: 'updated'}})
module.exports= mongoose.model('User',personSchema)
③修改app.js
添加部分為:
app.js
projectName/app.js:
const Koa = require('koa')
const app = new Koa()
const views = require('koa-views')
const json = require('koa-json')
const onerror = require('koa-onerror')
const bodyparser = require('koa-bodyparser')
const logger = require('koa-logger')


const mongoose = require('mongoose')
const dbconfig = require('./db/config')
mongoose.connect(dbconfig.dbs,{useNewUrlParser: true,useUnifiedTopology: true})
const db = mongoose.connection
db.on('error',console.error.bind(console,'connection error:'));
db.once('open',function () {
  console.log('mongoose 連接成功')
});
// error handler
onerror(app)

// middlewares
app.use(bodyparser({
  enableTypes:['json', 'form', 'text']
}))
app.use(json())
app.use(logger())
app.use(require('koa-static')(__dirname + '/public'))

app.use(views(__dirname + '/views', {
  extension: 'pug'
}))

// logger
app.use(async (ctx, next) => {
  const start = new Date()
  await next()
  const ms = new Date() - start
  console.log(`${ctx.method} ${ctx.url} - ${ms}ms`)
})

const index = require('./routes/index')
app.use(index.routes(), index.allowedMethods())
const users = require('./routes/users')
app.use(users.routes(), users.allowedMethods())


// error-handling


// routes


app.on('error', (err, ctx) => {
  console.error('server error', err, ctx)
});

module.exports = app
④在users.js中添加user的路由
projectName/routes/users.js:
const router = require('koa-router')()
const User = require('../db/models/user')
router.prefix('/users')

router.get('/add', function (ctx, next) {
  ctx.body = 'this is a users/add response'
})

router.get('/', function (ctx, next) {
  ctx.body = 'this is a users response!'
})

router.get('/bar', function (ctx, next) {
  ctx.body = 'this is a users/bar response'
})

module.exports = router

10慷暂、重啟項目

關閉正在運行的dev后,重新啟動服務

npm run dev

如果出現(xiàn)了一下信息晨雳,則數(shù)據(jù)庫連接成功

E:\nodejs\node.exe E:\nodejs\node_modules\npm\bin\npm-cli.js run dev --scripts-prepend-node-path=auto

> projectName@0.1.0 dev E:\nodejs\vue\projectName
> nodemon bin/www

[nodemon] 1.19.4
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node bin/www`
mongoose 連接成功

效果圖:

前后端搭建成功

到此整個前后端平臺搭建成功行瑞,可以開始創(chuàng)建項目了

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市餐禁,隨后出現(xiàn)的幾起案子血久,更是在濱河造成了極大的恐慌,老刑警劉巖帮非,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件氧吐,死亡現(xiàn)場離奇詭異,居然都是意外死亡末盔,警方通過查閱死者的電腦和手機筑舅,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來陨舱,“玉大人翠拣,你說我怎么就攤上這事∮蚊ぃ” “怎么了误墓?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵邦尊,是天一觀的道長。 經(jīng)常有香客問我优烧,道長,這世上最難降的妖魔是什么链峭? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任畦娄,我火速辦了婚禮,結果婚禮上弊仪,老公的妹妹穿的比我還像新娘熙卡。我一直安慰自己,他們只是感情好励饵,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布驳癌。 她就那樣靜靜地躺著,像睡著了一般役听。 火紅的嫁衣襯著肌膚如雪颓鲜。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天典予,我揣著相機與錄音甜滨,去河邊找鬼。 笑死瘤袖,一個胖子當著我的面吹牛衣摩,可吹牛的內容都是我干的。 我是一名探鬼主播捂敌,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼艾扮,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了占婉?” 一聲冷哼從身側響起泡嘴,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎锐涯,沒想到半個月后磕诊,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡纹腌,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年霎终,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片升薯。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡莱褒,死狀恐怖,靈堂內的尸體忽然破棺而出涎劈,到底是詐尸還是另有隱情广凸,我是刑警寧澤阅茶,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站谅海,受9級特大地震影響脸哀,放射性物質發(fā)生泄漏。R本人自食惡果不足惜扭吁,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一撞蜂、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧侥袜,春花似錦蝌诡、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至九杂,卻和暖如春颁湖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背尼酿。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工爷狈, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人裳擎。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓涎永,卻偏偏與公主長得像,于是被迫代替她去往敵國和親鹿响。 傳聞我的和親對象是個殘疾皇子羡微,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內容

  • 基于Vue的一些資料 內容 UI組件 開發(fā)框架 實用庫 服務端 輔助工具 應用實例 Demo示例 element★...
    嘗了又嘗閱讀 1,140評論 0 1
  • 日期:2019-1-11 一、事件&時間 1.“口部操”訓練6:49-7:43(54分鐘) 2.在路上8:00-1...
    龍航007閱讀 228評論 1 7
  • 所謂的自然養(yǎng)生即 日出而作惶我,日落而息妈倔; 粗茶淡飯,粗布衣衫绸贡。 早上吃的像皇上盯蝴, 中午吃的像平民, 晚上吃的像乞丐听怕。...
    泰安新泰曉筠閱讀 138評論 0 0
  • 有一天尿瞭,爸爸看到了朋友給他發(fā)的一張在芳村照的荷花照片闽烙,上面到處都是荷花荷葉,還有白荷花呢声搁,美麗極了黑竞。爸爸被...
    我是南瓜呦閱讀 128評論 0 2
  • 中國學位制度一般籠統(tǒng)稱為碩士和博士捕发。但是,歐美大學的研究生學位很魂,每一個都要其清楚的定義和嚴格的劃分扎酷,其中包括基礎課...
    谷雨閱讀 542評論 0 0