gpt4 book ai didi

javascript - 如何在函数内设置可观察对象?

转载 作者:行者123 更新时间:2023-12-03 12:07:36 24 4
gpt4 key购买 nike

我正在尝试将可观察量传递给函数。

function toggleContent(switcher) {
if (switcher == false) {
alert(switcher); //this shows the value
switcher(true); //this creates an error
switcher = true; //this doesn't do anything
}
}

this.content = ko.observable(false);
this.registerClick = toggleContent(this.content());

最佳答案

您需要传递可观察值本身,您当前仅传递其值。使用

this.registerClick = toggleContent(this.content);

而不是

this.registerClick = toggleContent(this.content());

关于javascript - 如何在函数内设置可观察对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25112671/

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