报错:
import { json, urlencoded } from 'body-parser'
^^^^
SyntaxError: Named export 'json' not found. The requested module 'body-parser' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
解决:
写法换成下面这个就欧克了
import pkg from 'body-parser';
const { json, urlencoded } = pkg;