用的mysql,原本想用mongo,可是windows死活安裝不成功,唉,同事說換系統是有道理的。mysql
這裏用到了一個模塊 mysql-pro,用來鏈接數據庫,新建一個config.js,它如今是這樣的git
const Client = require("mysql-pro"); const client = new Client({ mysql: { user: 'root', password: 'root', database: 'test', host: '127.0.0.1', } }); module.exports = client;
而後引用,這裏我在routes/index.js裏引用,如今它是這樣的github
const router = require('koa-router')() const sql = require('../sql/config') router.post('/getPerson', async (ctx, next) => { let data = { name: ctx.request.body.name, createdAt: Date.now() }; if(!data.name) return; // 注意這裏,由於是異步,因此要這樣寫才能夠取到值。 var tmp = await sql.query("select * from _mysql_peoples_info where name = ?;", [data.name]).then(function(result) { console.log(result); return result; }, function(error){ return -1; }); ctx.body = tmp; })
數據庫是這樣的sql
頁面如今是這樣的數據庫
一個簡單的查詢接口搞定,數據庫返回值哪裏搞一2個小時,異步編程讓人又愛又恨編程
推薦一個比較不錯的參考教程 https://chenshenhai.github.io/koa2-note/windows