💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 状态管理 State使用LocalStorage存储 存入和取出都做了相应的格式转换。无需再使用`JSON.parse `和`stringify` ## 设置 ``` Mogo.State.set("heihei", ["cc", { name: "321" }]); ``` ## 取出 ``` Mogo.State.get("heihei"); ``` ## 清除 ``` Mogo.State.set("heihei", null); ```