Inquiline 0.3.2

Inquiline 0.3.2

测试已测试
语言语言 SwiftSwift
许可证 BSD
发布最后发布2016年3月
SPM支持SPM

Kyle Fuller维护。



Inquiline 0.3.2

Inquiline

Nest Web Server Gateway Interface的实用工具集合。提供RequestTypeResponseType实现。

请求

Inquiline提供了一个RequestType实现。

let request = Request(method: "GET", path: "/", headers: nil, body: nil)

RequestType

Inquiline扩展了RequestType,提供了便利的头标索引和头标访问器。

request["Content-Type"]
request.host
request.contentType
request.contentLength
request.accept
request.authorization
request.cacheControl

响应

Inquiline提供了一个ResponseType实现。

let response = Response(.Ok, contentType: "plain/text", body: "Hello World")
HTTP/1.1 200 OK
Content-Type: plain/text
Content-Length: 11

Hello World

头标索引

response["Cache-Control"] = "no-cache"
response.contentType = "application/json"
response.cacheControl = "no-cache"

安装

pod 'Inquiline'

许可证

Inquiline采用BSD许可证发布。参见LICENSE