这可能在JS中有一个类并从字符串中声明2个方法名称吗?
我的意思是这样的:
function MyClass()
{
var methods = ['hello', 'hey'];
for (var i in methods)
{
this[methods[i]] = function()
{
alert('This is method ' + methods[i]);
}
}
}
这应该创建一个具有hello和hey函数的类。我需要创建一些具有非常相似的主体但名称不同的函数。
我不想使用eval,因此可以编译代码。
最佳答案
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"></link>
</head>
<body>
<script>
function generator(i) {
return function (x) {
return x * i;
}
}
function foo(methods) {
var i;
for (i = 0; i < methods.length; i++) {
this[methods[i]] = generator(i);
}
}
var test = new foo(['nulify', 'repeat', 'double']);
console.log(test.nulify(10));
console.log(test.repeat(10));
console.log(test.double(10));
</script>
</body>
</html>
更多问题...
关于javascript - 如何使用字符串创建具有名称的类方法?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24801911/