[XState] Send Events to the Machine with the XState Send Action Creator

XState provides the send function to create an action that will send the event passed in to the machine. If we provide the second argument to the send function, the options object, we can send the event to a particular machine. This is useful when you have invoked a machine as a service on a state node, a concept that will be explored in a later lesson.

 

复制代码
const { Machine, interpret, send } = require("xstate");

const echoMachine = Machine({
  id: "echo",
  initial: "listening",
  states: {
    listening: {
      on: {
        SPEAK: {
          actions: send("ECHO") // trigger echo action
        },
        ECHO: {
          actions: () => {
            console.log("echo is called");
          }
        }
      }
    }
  }
});

const service = interpret(echoMachine).start();
service.send("SPEAK"); //echo is called
复制代码

 

posted @   Zhentiw  阅读(311)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2017-01-19 [Vue] Use basic event handling in Vue
2017-01-19 [Ramda] Declaratively Map Data Transformations to Object Properties Using Ramda evolve
2017-01-19 [React] Understand React.Children Utilities
2017-01-19 [Angular] Observable.catch error handling in Angular
点击右上角即可分享
微信分享提示