gpt4 book ai didi

svelte - 如何在 Svelte 中订阅的商店中发生值更改时触发功能?

转载 作者:行者123 更新时间:2023-12-04 14:39:34 24 4
gpt4 key购买 nike

我的一个组件订阅了商店中的一个变量。每当该存储变量发生更改时,我都想触发一个函数。
商店.js

    import { writable } from "svelte/store"; 
export const comparedProducts = writable([1,2,3]);
组件.svelte
    import { comparedProducts } from "../stores.js";

//if there is a change in $comparedProducts trigger this function eg. ([1,2])
const someFunction = () => {
//do something
}

最佳答案

找到了更清洁的解决方案

import { comparedProducts } from "../stores.js";
$: $comparedProducts, run();

function run(){
//do something here
}

关于svelte - 如何在 Svelte 中订阅的商店中发生值更改时触发功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64858904/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com