这篇文章介绍 vue学习总结案例:用户列表案例。
本文详细记录了所有步骤,拿来学习是真不错!
用到的知识点:
vue-cli 创建 vue2 项目;
element ui 组件库;
axios 拦截器;
proxy 跨域接口代理;
vuer-router 路由;
完整源码在gitee:https://gitee.com/xingyueqianduan/yonghuliebiaodemo
看完不会你打我。哈哈哈,开玩笑的,不多说,上刺刀!!
① 初始化项目
② 渲染用户表格的数据
③ 基于全局过滤器处理时间格式
④ 实现添加用户的操作
⑤ 实现删除用户的操作
⑥ 通过路由跳转到详情页
1.基于 vue-cli 运行如下的命令,新建 vue2.x 的项目:
vue create code-users
2.重置 App.vue 组件中的代码:
App 组件
1.在项目根目录中新建 vue.config.js 配置文件。
2.在 vue.config.js 配置文件中,通过 devServer 节点添加如下的配置项:
module.exports = {
devServer: {
// 修改 dev 期间的端口号
port: 3000,
// 自动打开浏览器
open: true
}
}
1.运行如下的命令,在 vue2.x 的项目中安装 vue-router:
npm install vue-router@3.4.9 -S
2.在 src 目录下新建 router/index.js 路由模块:
// 路由模块
import Vue from 'vue'
import VueRouter from 'vue-router'
// 安装路由插件
Vue.use(VueRouter)
// 创建路由实例对象
const router = new VueRouter({
// 路由规则
routes: [],
})
// 向外共享路由实例对象
export default router
3.在 main.js 模块中导入并挂载路由模块:
import Vue from 'vue'
import App from './App.vue'
// 导入路由模块
import router from './router'
Vue.config.productionTip = false
new Vue({
// 挂载路由
router,
render: h => h(App),
}).$mount('#app')
1.在 components 目录下新建 UserList.vue 组件如下:
UserList
2.在 router/index.js 路由模块中新增如下的路由规则:
// 创建路由实例对象
const router = new VueRouter({
// 路由规则
routes: [
// 路由重定向
{ path: '/', redirect: '/users', },
// 用户列表的路由规则
{ path: '/users', component: UserList }
],
})
3.在 App.vue 中声明 router-view 路由占位符:
1.运行如下的命令,在项目中安装 axios :
npm install axios@0.21.1 -S
2.在 main.js 中导入并配置 axios :
import Vue from 'vue'
import App from './App.vue'
import router from './router'
// 导入 axios
import axios from 'axios'
Vue.config.productionTip = false
// 全局配置 axios
axios.defaults.baseURL = 'https://www.escook.cn'
Vue.prototype.$http = axios
new Vue({
router,
render: h => h(App),
}).$mount('#app')
1.在 UserList.vue 组件中声明如下的 data 数据节点:
data() {
return {
// 用户列表数据,默认为空数组
userList: [],
}
}
2.在 created 生命周期函数中预调用 getUserList 方法:
created() {
// 调用此方法,请求用户列表数据
this.getUserList()
}
3.在 methods 中声明 getUserList 方法:
methods: {
// 请求用户列表的数据
async getUserList() {
const { data: res } = await this.$http.get('/api/users')
// res.status 等于 0 表示数据请求成功,否则,请求失败!
if (res.status !== 0) return console.log('用户列表数据请求失
败!')
this.userList = res.data
},
}
由于 API 接口服务器并没有开启 CORS 跨域资源共享,因此终端会提示如下的错误:
Access to XMLHttpRequest at ’ https://www.escook.cn/api/users ’ from origin ’ http://localhost:3000 ’ has been blocked byCORS policy: No 'Access-Control-Allow-Origin’header is present on the requested resource.
解决方案:
通过 vue.config.js 中的 devServer.proxy 即可在开发环境下将 API 请求代理到 API 服务器。
module.exports = {
devServer: {
port: 3000,
open: true,
// 当前项目在开发调试阶段,
// 会将任何未知请求 (没有匹配到静态文件的请求) 代理到https://www.escook.cn
proxy: 'https://www.escook.cn'
}
}
同时,在 main.js 入口文件中,需要把 axios 的根路径改造为开发服务器的根路径:
// 全局配置 axios
Vue.prototype.$http = axios
axios.defaults.baseURL = 'http://localhost:3000'
注意:devServer.proxy 提供的代理功能,仅在开发调试阶段生效。项目上线发布时,依旧需要API 接口服务器开启 CORS 跨域资源共享。
1.运行如下的命令,在项目中安装 element-ui 组件库:
npm i element-ui -S
2.在 main.js 中配置 element-ui:
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import axios from 'axios'
// 1. 导入 element-ui
import ElementUI from 'element-ui'
// 2. 导入 element-ui 的样式表
import 'element-ui/lib/theme-chalk/index.css'
Vue.config.productionTip = false
// 3. 将 ElementUI 安装为 vue 的插件
Vue.use(ElementUI)
Vue.prototype.$http = axios
axios.defaults.baseURL = 'http://localhost:3000'
new Vue({
router,
render: h => h(App),
}).$mount('#app')
gitee:https://gitee.com/xingyueqianduan/yonghuliebiaodemo
请求根路径
https://www.escook.cn/
获取用户列表
GET
/api/users
请求参数:
无
添加用户
POST
/api/users
name 用户姓名(1 - 15 个字符之间)
age 用户年龄(1 - 100 之间)
position 职位(1 - 10 个字符之间)
status 的值等于 0 表示成功
删除用户
delete
/api/users/:id
id 要删除的用户的Id(URL参数)
status 的值等于 0 表示成功
获取用户信息
GET
/api/users/:id
id 要查询的用户的Id(URL参数)
status 的值等于 0 表示成功