基于node+koa實現(xiàn)的mock數(shù)據(jù)接口,Koa需要v7.6.0以上node版本,低于此版本請先升級node
創(chuàng)新互聯(lián)是少有的成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、營銷型企業(yè)網(wǎng)站、小程序開發(fā)、手機(jī)APP,開發(fā)、制作、設(shè)計、外鏈、推廣優(yōu)化一站式服務(wù)網(wǎng)絡(luò)公司,2013年至今,堅持透明化,價格低,無套路經(jīng)營理念。讓網(wǎng)頁驚喜每一位訪客多年來深受用戶好評
目錄結(jié)構(gòu)
// server.js const Koa = require('koa'); const Router = require('koa-router'); const qs = require('qs'); const assert = require('assert'); const app = new Koa(); const router = new Router(); /** * 獲取列表數(shù)據(jù) * @param {request} page 頁數(shù) * @param {request} limit 每頁數(shù)據(jù)條數(shù) * @param {response} errno 返回狀態(tài)碼 0 ==> 返回成功 1 ==> 有錯誤 * @param {response} hasMore 是否有更多數(shù)據(jù) */ let listData = require('./mock/list/list.js'); router.get('/api/getlist/:page/:limit', function (ctx, next) { const page = ctx.params.page; const limit = ctx.params.limit; const maxPage = listData.length / limit; // 構(gòu)造返回對象 let res = { errno: 0, data: { hasMore: true, data: [] } }; // 如果超過最大頁面數(shù) if ((page*1 + 1) >= maxPage) { res.data.hasMore = false; } res.data.data = listData.slice(page*limit, page*limit + limit); ctx.body = res; }); /** * 獲取詳情數(shù)據(jù) * @param {request} id 商品id */ const detailData = require('./mock/detail/detail.js'); router.get('/api/getdetail/:id', function (ctx, next) { const id = ctx.params.id let res = { errno: 0, data: { data: [] } } res.data.data = detailData; // todo... ctx.body = res; }); /** * 提交評論 * @param {request} id 用戶id * @param {request} uid 商品id * @param {request} msg 評論內(nèi)容 */ router.post('/api/comment', function (ctx, next) { const params = qs.parse(ctx.req._parsedUrl.query); const id = params.id; const uid = params.uid; const msg = params.msg; if (id === undefined || uid === undefined || msg === undefined) { ctx.body = { errno: 1, msg: '缺少參數(shù)' } } else { // todo... ctx.body = { errno: 0, msg: '評論成功' } } }); app .use(router.routes()) .use(router.allowedMethods()); app.listen(3000); console.log("server is running at http://localhost:3000/");
實際項目中,調(diào)用接口會遇到跨域的問題,解決的方式有多種,這里介紹如何在webpack中配置
module.exports = { ... devServer: { proxy: { // 將 `/api` 開頭的 http 請求,都代理到 `localhost:3000` 上,由 koa 提供 mock 數(shù)據(jù) '/api': { target: 'http://localhost:3000', secure: false } } ... } }
項目地址:https://github.com/daijingfeng/mock-server
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。