App

在 PHP 中没有默认路由器。 因此,提供了 \Dapr\App 类。 在后台使用了 Nikic’s FastRoute ,但是,您也可以自由使用任何路由器或 您想要的框架。 只需在 App 类中查看 add_dapr_routes() 方法,看看actors和 订阅是如何实现的。

每个应用都应该以 App:::create() 开头,这需要两个参数,第一个是现有的DI 容器, 第二个是回调到 ContainerBuilder 并添加您自己的配置。

您应该从那里定义您的路由,然后调用 $app->start() 来执行当前请求的路由。

  1. <?php
  2. // app.php
  3. require_once __DIR__ . '/vendor/autoload.php';
  4. $app = \Dapr\App::create(configure: fn(\DI\ContainerBuilder $builder) => $builder->addDefinitions('config.php'));
  5. // add a controller for GET /test/{id} that returns the id
  6. $app->get('/test/{id}', fn(string $id) => $id);
  7. $app->start();

从控制器中返回

从控制器返回任何数据都会被序列化为json 对象。 您也可以要求Psr Response对象并返回该对象,允许您自定义headers并控制整个响应:

  1. <?php
  2. $app = \Dapr\App::create(configure: fn(\DI\ContainerBuilder $builder) => $builder->addDefinitions('config.php'));
  3. // add a controller for GET /test/{id} that returns the id
  4. $app->get('/test/{id}',
  5. fn(
  6. string $id,
  7. \Psr\Http\Message\ResponseInterface $response,
  8. \Nyholm\Psr7\Factory\Psr17Factory $factory) => $response->withBody($factory->createStream($id)));
  9. $app->start();

将应用程序作为客户端

当你只想使用Dapr作为客户端,例如在现有代码中,你可以调用 $app->run()。 通常情况下,特别是在生产中 不需要自定义配置,但您可能想使用编译的DI 容器:

  1. <?php
  2. // app.php
  3. require_once __DIR__ . '/vendor/autoload.php';
  4. $app = \Dapr\App::create(configure: fn(\DI\ContainerBuilder $builder) => $builder->enableCompilation(__DIR__));
  5. $result = $app->run(fn(\Dapr\DaprClient $client) => $client->get('/invoke/other-app/method/my-method'));