raw body middleware for ThinkJS 2.2.12,
you can get text/plain(raw) type data,when you used 'this.post()' in controller.
npm install think-raw-body --save
create file if not exist, src/common/bootstrap/middleware.js.
import rawBody from 'think-raw-body';
think.middleware('raw_body', rawBody);create file if not exist, src/common/config/hook.js.
export default {
payload_parse: ['prepend', 'raw_body']
}MIT