我想將數據存儲到多維數組或對象中並將數據發送到控制器。我已經定義在JavaScript中的物體,像如何在javascript或jquery中創建多維對象或數組
var dynamicprofile = new Object();
var certidarry = [];
var trueorfalse = [];
dynamicprofile.profilename = "certifications";
$(".certclass").each(function (index, element) {
certidarry.push(i);
if (element.checked == false) {
trueorfalse.push(false);
}
else if (element.checked == true) {
trueorfalse.push(true);
}
});
dynamicprofile.idarray = certidarry;
dynamicprofile.trueorfalse = trueorfalse;
dynamicprofile.profilename = "projects";
var projectidarry12 = [];
var trueorfalsearry12 = [];
$(".Projectsclass").each(function (index, element) {
projectidarry12.push(index);
if (element.checked == false) {
trueorfalsearry12.push(false);
}
else if (element.checked == true) {
trueorfalsearry12.push(true);
}
});
dynamicprofile.idarray = projectidarry12;
dynamicprofile.trueorfalse = trueorfalsearry12;
如果看到json
內容則僅顯示最新信息。但它沒有顯示先前保存的內容。我如何保存內容。 dynamicprofile.profilename,dynamicprofile.idarray和dynamicprofile.trueorfalse:
謝謝你,我得到了我已經使用第一個 – Jonathan