【穀粒學院】017-前端框架開發過程介紹、新增講師模組
目錄
4、在api資料夾下建立teacher.js檔案,封裝資料請求
一、前端框架開發過程介紹
1、框架使用過程
第一步:新增路由
第二步:點選某個路由,顯示對應頁面
第三步:在頁面中新增內容
編寫內容和請求資料的邏輯,其中請求資料進行了封裝:
所封裝的內容:
二、新增講師模組
1、在路由src\router\index.js中新增路由
import Vue from 'vue'// 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'/'el-icon-x' 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
*/
/**
* 匯出模組開始
*/
/**
* 路由:
* 這裡的路由分為兩種,constantRoutes 和 asyncRoutes:
* 1、constantRoutes: 代表那些不需要動態判斷許可權的路由,如登入頁、404、等通用頁面;
* 2、asyncRoutes: 代表那些需求動態判斷許可權並通過 addRoutes 動態新增的頁面;
*/
export const constantRoutes = [// 不需要動態判斷許可權的路由
{
path: '/login', // 登入
component: () => import('@/views/login/index'),
hidden: true
},
{
path: '/404', // 404
component: () => import('@/views/404'),
hidden: true
},
/**
* 首頁
*/
{
path: '/', // 首頁
component: Layout,
redirect: '/dashboard', // 重定向
children: [{ // 子地址
path: 'dashboard', // 路徑
name: 'Dashboard', // 名字
component: () => import('@/views/dashboard/index'),
meta: { title: '首頁', icon: 'dashboard' }
}]
},
/**
* 講師管理模組
*/
{
path: '/teacher', // 路徑
component: Layout,
redirect: '/teacher/add', // 重定向到/example/table
name: '講師管理',
meta: { title: '講師管理', icon: 'el-icon-s-help' }, // 名字和圖示
children: [
{
path: 'add', // 路徑是 /example/table
name: '新增講師', // 名字
component: () => import('@/views/teacher/add'), // 指向
meta: { title: '新增講師', icon: 'table' } // 基本資訊:名字和圖示
},
{
path: 'list',
name: '講師列表',
component: () => import('@/views/teacher/list'),
meta: { title: '講師列表', icon: 'tree' }
}
]
},
/**
* Example
*/
{
path: '/example', // 路徑
component: Layout,
redirect: '/example/table', // 重定向到/example/table
name: 'Example',
meta: { title: 'Example', icon: 'el-icon-s-help' }, // 名字和圖示
children: [
{
path: 'table', // 路徑是 /example/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' }
}
]
},
/**
* Form
*/
{
path: '/form',
component: Layout,
children: [
{
path: 'index',
name: 'Form',
component: () => import('@/views/form/index'),
meta: { title: 'Form', icon: 'form' }
}
]
},
/**
* Nested
*/
{
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'),
name: 'Menu2',
meta: { title: 'menu2' }
}
]
},
/**
* External Link
*/
{
path: 'external-link',
component: Layout,
children: [
{
path: 'https://panjiachen.github.io/vue-element-admin-site/#/',
meta: { title: 'External Link', icon: 'link' }
}
]
},
// 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、新增對應vue頁面
圖示:
程式碼示例:
<template>
<div>
新增講師
</div>
</template>
<script>
</script>
<style>
</style>
3、講師模組最終效果展示
4、在api資料夾下建立teacher.js檔案,封裝資料請求
(仿照table.js寫)
import request from '@/utils/request'
export function getList() {
return request({
url: '/edu-admin/teacher/list', // 路徑
method: 'get'
});
}
5、前端拿取
到這裡,我發現已經有很多內容跟視訊裡面不一樣了,接下來,我打算做重點筆記,不再一步一步做完整筆記了。
相關文章
- 穀粒學院(四)前端開發之ES6 | Vue前端Vue
- 穀粒學院-2-mybatisplusMyBatis
- 穀粒商城
- ModStartCMS模組開發介紹
- 穀粒商城筆記筆記
- 穀粒商城-基礎篇
- Android模組化框架介紹Android框架
- ASP.NET Core模組化前後端分離快速開發框架介紹之3、資料訪問模組介紹ASP.NET後端框架
- 03穀粒商城-高階篇三
- 02穀粒商城-高階篇二
- 05穀粒商城-高階篇五
- 04穀粒商城-高階篇四
- 06穀粒商城-高階篇六
- 小程式web開發框架-weweb介紹Web框架
- 移動前端開發和Web前端開發的不同點介紹前端Web
- 前端模組化的演變過程前端
- .NET開發框架(一)-框架介紹與視訊演示框架
- 【AI講師招募】CSDN學院百萬年薪招募AI講師了!AI
- C/S框架網介紹|.NET快速開發平臺|Winform開發框架框架ORM
- 穀粒商城高階篇筆記1筆記
- nbu新增media server過程簡介Server
- uni-app跨端開發框架介紹APP跨端框架
- 前端開發過程的工業化前端
- 前端模組化發展歷程 (-)前端
- ngx_pagespeed-nginx前端優化模組介紹Nginx前端優化
- 傻瓜式軟體開發過程講解
- ASP.NET Core模組化前後端分離快速開發框架介紹之1、開篇ASP.NET後端框架
- 前端模組化開發前端
- 力軟快速開發框架建設與介紹框架
- 以太坊開發框架Truffle基礎使用介紹框架
- 一個輕量級WebFramework開發框架介紹WebFramework框架
- 介紹一下我開發的orm框架ORM框架
- Qt混合Python開發技術:Python介紹、混合過程和DemoQTPython
- 第1講回顧:聯邦學習技術介紹、應用和FATE開源框架聯邦學習框架
- 前端框架開發之Niu框架——從零學框架的小白前端框架
- J2EE開發之常用開源框架介紹框架
- ASP.NET Core模組化前後端分離快速開發框架介紹之4、模組化實現思路ASP.NET後端框架
- 面向企業級前端應用的開發框架 UI5 的發展簡史介紹前端框架UI