响应

    Hyperf\HttpServer\ResponseInterface 提供了 json($data) 方法用于快速返回 Json 格式,并设置 Content-Typeapplication/json$data 接受一个数组或为一个实现了 Hyperf\Utils\Contracts\Arrayable 接口的对象。

    返回 Xml 格式

    返回 Raw 格式

    Hyperf\HttpServer\ResponseInterface 提供了 raw($data) 方法用于快速返回 raw 格式,并设置 Content-Typeplain/text$data 接受一个字符串或为一个实现了 方法的对象。

    重定向

    Hyperf\HttpServer\ResponseInterface 提供了 redirect(string $toUrl, int $status = 302, string $schema = 'http') 返回一个已设置重定向状态的 Psr7ResponseInterface 对象。

    分块传输编码 Chunk

    返回文件下载