gpt4 book ai didi

javascript - 将变量传递给 Javascript 中的类方法

转载 作者:行者123 更新时间:2023-11-29 21:33:49 25 4
gpt4 key购买 nike

这是我第一次尝试使用类(或等同于类的 Javascript)。

使用以下代码我得到错误:Missing ( before function parameters. in Zeile 8

我这里的语法有错误吗?还是不能将变量传递给“类方法”?

function tagConstructor() {
this.tagTypeList = [
"brand",
"category",
];
this.tags = {};
}
function tagConstructor.prototype.addTag = function(tagType, tag) { // This is line 8 where the error occurs
// Only add tag if tag type exists in tagTypeList
if (this.tagTypeList.indexOf(tagType) > -1) {
this.tags[tagType] = tag;
}
}
function main() {
var test = new tagConstructor();
test.addTag("brand", "Adidas");
test.addTag("gender", "Damen");
}

最佳答案

不是

function tagConstructor.prototype.addTag = function

tagConstructor.prototype.addTag = function

关于javascript - 将变量传递给 Javascript 中的类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35342106/

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