辞書のリストを引数として取る関数があります。[{}]
これは新しいkey: value
のペアを追加することでこの辞書のリストを操作します。ここでvalueは辞書のリストです。これは関数の外観です。私はそれを説明するコメントを追加しました。Javascript:辞書 'key'の値がループの外側でヌルになる
function addFilesToProjects(nonUniqueArray, lists) {
var fileList = [{}]; //this will contain the list of dictionaries that I want to add as a key to the array 'nonUniqueArray'
var filesArray = []; //this was just for testing purposes because I want to access the modified version of nonUniqueArray outside the function, which I'm not able to (it shows undefined for the new key:value pair)
for (var i = 0; i < nonUniqueArray.length; i++) {
lists.forEach(function (list) {
fileNameString = JSON.stringify(list['name']).slice(2, -2);
if (fileNameString.indexOf(nonUniqueArray[i]['title']) !== -1 && fileNameString !== nonUniqueArray[i]['title']) {
fileList.push({
'name': fileNameString
});
}
});
nonUniqueArray[i]['files'] = fileList;
//this logs out the right key:value pair to the console
console.log(nonUniqueArray[i]);
filesArray.push(nonUniqueArray[i]);
while (fileList.length > 0) {
fileList.pop();
}
}
//however, now I get everything as before except the new 'files' key has empty list [] as its value :(
console.log(nonUniqueArray);
return filesArray;
}
なぜこのようなことが起こったのか、誰かが助けることができますか?
IDEまたはブラウザに組み込まれた完全機能のデバッガを使用してコードを実行します。それは何が起きているのか、何がうまくいかないのかを知る最も良い方法です。 –
'新しい 'ファイル'キーが空リストを持っていることを除いて、前と同じようにすべて取得します。 – vlaz
私はfilesArray配列のすべてをポップしていますが、非ユニーク配列ではありません。また、これはサーバー側にあり、私は崇高な上でコーディングしています。私はconsole.logsを使用してデバッグしていますが、それは私を助けていません – Scrotch