使用body-parser解析post请求
npm install --save koa-bodyparser
const Koa = require('koa');
const app = new Koa();
const bodyParser = require('koa-bodyparser');
app.use(bodyParser)
准备请求的url 全局配置 src/serviceAPI.config.js
const LOCALURL ='http://localhost:3001/';
const URL = {registerUser = LOCALURL + 'user/register',
}
module.exports = URL;
准备POST请求 src/components/component/pages/Register.vue
import axios from 'axios'
import url from '@serviceAPI.config.js'export default{data(){username:'',password:''},methods:{axiosRegisterUser(){axios({url: url.registerUser,method: 'post',data:{username: this.username,password: this.password}}).then(response =>{console.log(response);}).catch((error)=>{console.log(error);})}}
}
后端接受post请求中的参数 service/user.js
const Router = require('koa-router');let router = new Router();
router.post('./register', async(ctx)=>{console.log(ctx.request.body);ctx.body = ctx.request.body;
})module.exports = router;
设置后台允许解决跨域(简单版)
npm install --save koa2-cors
const Koa = require('koa');
const app = new Koa();
const cors = require('koa2-cors');app.use(cors())