Vue全家桶:
前端框架 Vue.js
状态管理 Vuex
动态路由匹配 vue-router
http服务 axios
模块打包 webpack
UI框架 element
数据服务器
服务器端 node.js
基于node的web框架 express
分布式数据库 mongodb
mongodb工具 mongoose
回到vue
脚手架工程,输入命令
npm i axios
在src/axios/
目录下创建index.js
import Vue from 'vue'
import axios from 'axios'
axios.defaults.baseURL="http://localhost:3000"
Vue.prototype.$ajax = axios
在main.js
中引入axios
import './axios'
接下来修改login.vue
,在login
方法中发送ajax
请求
login() {
this.$refs.loginForm.validate((valid) => {
if (valid) {
this.$ajax.post('/users/validate', this.user).then((res) => {
if (res.data) {
this.$store.dispatch('login', res.data).then(() => {
this.$notify({
type: 'success',
message: '欢迎你,' + res.data.name + '!',
duration: 3000
})
this.$router.replace('/')
})
} else {
this.$message({
type: 'error',
message: '用户名或密码错误',
showClose: true
})
}
}).catch((err) => {
this.$message({
type: 'error',
message: '网络错误,请重试',
showClose: true
})
})
}
else {
return false
}
})
}
修改完毕后启动数据,后端服务器,进行登录,结果发现会提示网络错误
打开浏览器调试工具,发现报以下错误
Failed to load http://localhost:3000/users/validate:
Response to preflight request doesn't pass access control check:
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost:8080' is therefore not allowed access.
这是因为http请求头部没有进行允许跨域导致的,打开后端服务的app.js
文件,在路由配置前添加以下代码
app.all('*', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With,Content-Type");
res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
next();
});
// 以下是之前的路由配置代码
app.use('/users', router)
到此为止,登录功能已经实现,虽然功能非常简单,但涉及到的点还是挺全面的,最后附上完整代码地址