灵活的请求响应
Actix中的Handler函数可以返回实现该Respondert
rait的各种对象。这使得从API返回一致的响应变得轻而易举。
{{ partial "header" . }}
rust's powerful actor system and most fun web framework
Forget about stringly typed objects, from request to response, everything has types.
Actix provides a lot of features out of box. WebSockets, HTTP/2, pipelining etc.
Easily create your own libraries that any Actix application can use.
Actix is blazingly fast. Check yourself.
Handler functions in actix can return a wide range of objects that
implement the Responder
trait. This makes it a breeze
to return consistent responses from your APIs.
Actix comes with a powerful extractor system that extracts data from the incoming HTTP request and passes it to your view functions. Not only does this make for a convenient API but it also means that your view functions can be synchronous code and still benefit from asynchronous IO handling.
{{ highlight `#[derive(Deserialize)] struct Event { timestamp: f64, kind: String, tags: VecHandling multipart/urlencoded form data is easy. Just define a structure that can be deserialized and actix will handle the rest.
{{ highlight `#[derive(Deserialize)] struct Register { username: String, country: String, } fn register(data: FormAn actix app comes with a URL routing system that lets you match on URLs and invoke individual handlers. For extra flexibility, scopes can be used.
{{ highlight `fn index(req: HttpRequest) -> impl Responder { "Hello from the index page" } fn hello(path: PathRust强大的actor系统和有趣的web框架
忘记关于字符串类型的对象,从请求到响应,一切都有类型,异步。
Actix提供了丰富的特性开箱即用。WebSockets,HTTP/2,流,管道,SSL,异步HTTTP客户端等一应俱全.
轻松创建任何基于Actix应用的自己的特色库。
Actix 具有顶级的速度. Check yourself.
Actix中的Handler函数可以返回实现该Respondert
rait的各种对象。这使得从API返回一致的响应变得轻而易举。