私は、文字列変数proyNombreに格納されたキーから値を取得しようとしていますが、私は「myAssociativeArray.MyKey」一般的な方法を経由して、それを呼び出すたび、それがキーとして変数「proyNombre」を取得する代わりに、その値を取得しますそれをキーとして渡します。javascriptの連想配列から '動的に'値を取得する方法は?
proyectos.each(function(index){
var proyNombre = this.value;
if(!(proyNombre in myArray)){ // whenever the variable is undefined, define it
myArray[proyNombre] = horas[index].value-0 + minutos[index].value/60;
}
else{
console.log(myArray.proyNombre); //This doesnt work, it tries to give me the value for the key 'proyNombre' instead of looking for the proyNombre variable
console.log(myArray.this.value); //doesnt work either
}
});
注 - ちょうどオブジェクト。 – alex