响应处理

FastD API 返回均是响应 json, 因为主要单独针对 API 场景, 如果功能无法满足业务需要,可以通过自定义 扩展 来实现业务目的。

  1. namespace Http\Controller;
  2. use FastD\Http\ServerRequest;
  3. class IndexController
  4. {
  5. public function sayHello(ServerRequest $request)
  6. {
  7. return json([
  8. 'foo' => 'bar'
  9. ]);
  10. }
  11. }

json 是框架提供的辅助函数,可以通过 src/Support/helpers.php 进行查阅。

下一节: 授权