吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2043|回复: 9
收起左侧

[求助] 油猴脚本使用Zustand

[复制链接]
探索1979 发表于 2023-10-20 07:29
油猴脚本使用Zustand时好像加载不到Zustand库 请问如何解决

// ==UserScript==
// @name         My Greasemonkey Script
// @namespace    http://your-namespace.example/
// @version      1.0
// @description  Example script using Zustand in Greasemonkey
// @match        http://127.0.0.1/*
// @require      https://fastly.jsdelivr.net/npm/zustand@4.4.1/umd/vanilla.development.js
// ==/UserScript==

(function () {
    'use strict';
    console.log(`3333: `);

    // 导出Zustand库到全局对象
    const { create } = window.Zustand;

    // 创建状态存储对象
    const useStore = create((set) => ({
        count: 0,
        increment: () => set((state) => ({ count: state.count + 1 })),
        decrement: () => set((state) => ({ count: state.count - 1 })),
    }));

    // 获取当前状态
    const currentState = useStore.getState();
    console.log(currentState);
    console.log(`2222: ${currentState}`);

    // 调用操作来更新状态
    useStore.getState().increment();
    useStore.getState().increment();
    useStore.getState().decrement();

    // 获取更新后的状态
    const updatedState = useStore.getState();
    console.log(updatedState);
    console.log(`1111: ${updatedState}`);
})();

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

pxhzai 发表于 2023-10-20 08:19
本帖最后由 pxhzai 于 2023-10-20 08:38 编辑

可以去问问机器人
pxhzai 发表于 2023-10-20 08:28
本帖最后由 pxhzai 于 2023-10-20 08:38 编辑

现在智能ai很厉害
streetfighterlu 发表于 2023-10-20 08:32
1107934496 发表于 2023-10-20 08:36
pxhzai 发表于 2023-10-20 08:28
阿里

[mw_shl_code=asm,true]这段脚本看起来没有什么问题,但是可能存在一些问题,例如您的脚本可能需要 ...

本版区版规

一、本版只限于发布编程技术和源码分享有关的求助、讨论或则学习记录,学习记录贴请勿短时间刷多个主题,可通过编辑和回复进行更新,无法回复编辑可发新帖。禁止使用ChatGPT或其他AI生成的答案解答问题,不准发布与问题无关的回复 。

免费评分

参与人数 1吾爱币 +3 热心值 +1 收起 理由
pxhzai + 3 + 1 谢谢@Thanks!

查看全部评分

 楼主| 探索1979 发表于 2023-10-20 09:09
pxhzai 发表于 2023-10-20 08:28
现在智能ai很厉害

问了,没有解决了 大神
 楼主| 探索1979 发表于 2023-10-20 09:10
streetfighterlu 发表于 2023-10-20 08:32
这个用来抢票可以不

Zustand: 一个轻量、现代的状态管理库
lgblgc 发表于 2023-10-20 09:21
看着很不错~
youYan122 发表于 2023-10-20 14:12
直接丢给人工机器人,会给你答案的
 楼主| 探索1979 发表于 2023-10-20 15:19
本帖最后由 探索1979 于 2023-10-20 15:27 编辑
youYan122 发表于 2023-10-20 14:12
直接丢给人工机器人,会给你答案的

他让安装npm和Node.js,但油猴脚本用上了吗?没有找到解决方法
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 19:53

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表