lib/http-api-适配器
encodeUrlEncoded()
encodeUrlEncoded(object): string
将对象编码为 url 编码的字符串。
参数
参数 | 类型 |
---|---|
对象 | Record <string , any > |
返回值
字符串
toExpressResponse()
toExpressResponse(response, res): Promise<void>
将 Web 响应适配为 Express 响应,调用适当的 Express 响应方法以处理响应。
参数
参数 | 类型 |
---|---|
响应 | 响应 |
res | Response <any , Record <string , any >> |
返回值
Promise
<void
>
toWebRequest()
toWebRequest(req): Request
将 Express 请求适配为 Web 请求,返回 Web 请求。
参数
参数 | 类型 |
---|---|
req | Request <ParamsDictionary , any , any , ParsedQs , Record <string , any >> |