基于 Koa平台Node.js开发的KoaHub.js的输出json到页面代码

koahub-body-res

koahub body res

Format koa's respond json.

Installation

$ npm install koahub-body-res

Use with koa

var app = require('koa')();
var koaRes = require('koahub-body-res');
app.use(koaRes());
 
this.data = 'This is a body';
this.msg = 'This is a msg';
this.go = 'This is a go url';
 
output
 
this.body = {
    code: 200,
    data: 'This is a body',
    msg: 'This is a msg'
}
 
this.body = {
    code: 200,
    data: 'This is a body',
    msg: 'This is a msg',
    go: 'This is a go url'
};
 

官网:http://js.koahub.com

基于 Koa平台Node.js开发的KoaHub.js的输出json到页面代码

上一篇:IOS学习笔记之关键词@dynamic


下一篇:13个JavaScript图表(JS图表)图形绘制插件【转】