The documentation you are viewing is for Dapr v1.13 which is an older version of Dapr. For up-to-date documentation, see the latest version.
如何操作使用脚本与 virtual actors 互动
调用 actor 方法进行状态管理
了解如何通过调用 HTTP/gRPC 端点来使用 virtual actors。
调用 actor 方法
你可以通过调用 HTTP/gRPC 端点与 Dapr 互动来调用 actor 方法。
POST/GET/PUT/DELETE http://localhost:3500/v1.0/actors/<actorType>/<actorId>/method/<method>
在请求正文中为角色方法提供数据。 请求的响应(即 actor 方法调用的数据)在响应体中。
请参阅 Actors API 描述 以获取更多详细信息。
注意
或者,您可以使用Dapr SDK来使用Actors.与 Actors 一起保存状态
您可以通过 HTTP/gRPC 端点与 Dapr 交互,利用 Dapr 的 actor 状态管理功能可靠地保存状态。
要使用 Actor,您的状态存储必须支持多项目事务。 这意味着您的状态存储组件必须实现TransactionalStore
接口。
查看支持事务/actors的组件列表。 只有一个单一的状态存储组件可以被用作所有角色的状态存储。
下一步
Actor可重入性>>相关链接
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.