1Introduction
- description:http 请求方法重写
- author:ydr.me
- create:2017年04月13日17:26:35
- update:2017年04月13日17:26:35
- github:https://github.com/blearjs/blear.express.http-method-override
2Example
将 http 请求头重写。如接受到的数据为
request.method: POST
request.headers[x-http-method-override]: ABC
那么,会将request.method
重写为ABC
。
var httpMethodOverride = require('blear.express.http-method-override');
var express = require('express');
var app = express();
app.use(httpMethodOverride());
3Static
3.1.defaults
- 类型:
Object
- 说明:默认配置
3.2.defaults.header
- 类型:
String
- 说明:请求头
- 默认:
"x-http-method-override"
,配合blear.core.ajax#headering-3-8一起使用。
4Dependencies
5Reference
无。