forked from FoundKeyGang/FoundKey
[Server] text/plainの場合もJSONとして解析するように
This commit is contained in:
parent
38d9f736aa
commit
680f9a0b5c
2 changed files with 6 additions and 1 deletions
|
@ -18,7 +18,9 @@ const app = express();
|
|||
app.disable('x-powered-by');
|
||||
app.set('etag', false);
|
||||
app.use(bodyParser.urlencoded({ extended: true }));
|
||||
app.use(bodyParser.json());
|
||||
app.use(bodyParser.json({
|
||||
type: ['application/json', 'text/plain']
|
||||
}));
|
||||
app.use(cors({
|
||||
origin: true
|
||||
}));
|
||||
|
|
|
@ -21,6 +21,9 @@ const app = express();
|
|||
app.disable('x-powered-by');
|
||||
|
||||
app.use(bodyParser.urlencoded({ extended: true }));
|
||||
app.use(bodyParser.json({
|
||||
type: ['application/json', 'text/plain']
|
||||
}));
|
||||
app.use(compression());
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue