我想在包含動態值的javascript中創建一個json對象。我需要通過AJAX調用將此JSON對象傳遞給服務器。但我無法添加動態值。將動態鍵值添加到JSON對象
var finalJSONObj={};
for loop(int i = 0; i<10;i++){
// gets the values of rows i need to add ..
var taskValue = tasks[i]; // need to add this in the JSON Object
}
我最後的JSON對象應該是這樣的:
finalJSONObj = {
tasks1: 'taskValue',
tasks2: 'taskValue',
tasks3: 'taskValue',
tasks4: 'taskValue',
userId: 'abcd',
date: '23/09/2016'
};
需要添加 「taskValue」 從檢索到的for循環中的JSON對象中的每個任務。有什麼想法嗎?
你知道如何'key' /'value'對添加到Javascript對象?請參閱[本](http://stackoverflow.com/a/1168814/427146) – sabithpocker