Verwenden Sie Node.js und KoaHub.js und json und koahub-body-res
koahub körper res
Koas Antwort json formatieren.
Installation
$ npm install koahub-body-res
Zur Verwendung mit Koa
var app = require('koa')();
var koaRes = require('koahub-body-res');
app.use(koaRes());
this.data = 'Das ist ein Körper';
this.msg = 'Dies ist eine Nachricht';
this.go = 'Dies ist eine Go-URL';
Ausgabe
this.body = {
Code: 200,
Daten: „Das ist ein Körper“,
msg: 'Dies ist eine Nachricht'
}
this.body = {
Code: 200,
Daten: „Das ist ein Körper“,
msg: 'Dies ist eine Nachricht',
go: 'Dies ist eine Go-URL'
};
官网:http://js.koahub.com