簡體   English   中英

如何在javascript中創建對象列表

[英]how to create list of objects in javascript

        var employee =
        {
            Column1: null,
            Column2: null,

            create: function () {
                var obj = new Object();

                obj.Column1 = "";
                obj.Column2 = "";

                return obj;
            }
        };

在C#中我會做這樣的事情:

List<Employee> employees = new List<Employee>();

for (int i = 0; i < 10; i++)
{
    Employee emp = new Employee()
    {
        Column1 = "column 1 of emp" + i;
        Column2 = "column 2 of emp" + i;
    }
    employees.Add(emp);
}

我需要在javascript中做同樣的事情。

非常直接的方法來創建一個對象數組。

var employees = [];

for (var i = 0; i < 10; i++) {
    employees.push({
        Column1: 'column 1 of emp' + i,
        Column2: 'column 1 of emp' + i
    });
}
var list = [
{ date: '12/1/2011', reading: 3, id: 20055 },
{ date: '13/1/2011', reading: 5, id: 20053 },
{ date: '14/1/2011', reading: 6, id: 45652 }
];

用於訪問列表使用:

list[index].date

這是一個古老的問題,但只是想為此做出貢獻。 我用了數組

 function car(brand, color, year, price) { this.brand = brand; this.color = color; this.year = year; this.price = price; } var my = new Array(); my.push(new car("Ford", "Black", 2017, 15000)); my.push(new car("Hyundai", "Red", 2017, 17000)); document.getElementById('ford').value = my[0].price; document.getElementById('hyundai').value = my[1].price; 
 Ford price: <input type="text" id='ford'/><br><br> Hyndai price: <input type="text" id='hyundai'/> 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM