Java 将对象方法脚本映射到数组中的对象?
Java Script mapping objects method to a object in an array?
我知道如何使用 myArray.map( fn )
.
对整个数组应用方法
虽然看起来很奇怪和尴尬,但我想运行每个对象方法都将参数作为它自己。喜欢
function MyObject(i) {
this.i = i;
this.internalMethod = function () {
return this.i * 100
}
}
function externalMethod(object){
return object.i * 100
}
var objects = [new MyObject(3), new MyObject(-1), new MyObject(5)]
objects.map ( externalMethod ) // This works but
/// [300, -100, 500]
objects.map ( arrayElements.internalMethod )
将内部函数包装在匿名函数中,并将当前映射的对象传递给它。
var newObj = objects.map(function(curr) {
return curr.internalMethod()
});
console.log(newObj)
// [300, -100, 500]
我知道如何使用 myArray.map( fn )
.
虽然看起来很奇怪和尴尬,但我想运行每个对象方法都将参数作为它自己。喜欢
function MyObject(i) {
this.i = i;
this.internalMethod = function () {
return this.i * 100
}
}
function externalMethod(object){
return object.i * 100
}
var objects = [new MyObject(3), new MyObject(-1), new MyObject(5)]
objects.map ( externalMethod ) // This works but
/// [300, -100, 500]
objects.map ( arrayElements.internalMethod )
将内部函数包装在匿名函数中,并将当前映射的对象传递给它。
var newObj = objects.map(function(curr) {
return curr.internalMethod()
});
console.log(newObj)
// [300, -100, 500]