gpt4 book ai didi

javascript 找不到存在的方法

转载 作者:行者123 更新时间:2023-11-28 11:20:13 25 4
gpt4 key购买 nike

我在 JavaScript 文件中声明了一个非常简单的函数,该函数应该返回验证是否已开始:

window.Validator = function(){
this._started = false;
this.started = function(){
return this._started;
};
}

Validator.started();

但是,当我调用 Validator.started() 时,即使它实际上是直接在声明之后,它也会抛出错误:

Uncaught TypeError: Validator.started is not a function

这真的让我摸不着头脑,不知道为什么它不起作用。

最佳答案

您应该创建验证器的实例

new Validator().started()

关于javascript 找不到存在的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60246924/

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