企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 状态管理 State使用LocalStorage存储 存入和取出都做了相应的格式转换。无需再使用`JSON.parse `和`stringify` ## 设置 ``` Mogo.State.set("heihei", ["cc", { name: "321" }]); ``` ## 取出 ``` Mogo.State.get("heihei"); ``` ## 清除 ``` Mogo.State.set("heihei", null); ```