我正在尝试构建一个颜色结构,每个项目有 3 个数据。比如红色有x和y,蓝色有x和y等。所以这3条数据是color, x, y
我需要什么结构才能根据颜色轻松读取 x 和 y。我通常这样做push(color, x, y)
,但这在这里行不通,因为我需要通过颜色快速搜索而不需要循环。我在这里需要什么结构,以及如何设置和获取它。
我正在尝试构建一个颜色结构,每个项目有 3 个数据。比如红色有x和y,蓝色有x和y等。所以这3条数据是color, x, y
我需要什么结构才能根据颜色轻松读取 x 和 y。我通常这样做push(color, x, y)
,但这在这里行不通,因为我需要通过颜色快速搜索而不需要循环。我在这里需要什么结构,以及如何设置和获取它。
一个简单的对象(散列)呢?
// Initial creation
var colors = {
blue: { x: 897, y: 98 },
red: { x: 43, y: 1334 },
yellow: { y: 12 }
}
// Adding new element to existing object
colors['green'] = { x: 19 };
// Accessing them
console.log(colors.blue.x);
console.log(colors.yellow.y);
// Accessing them with name in var
var needed = 'green';
console.log(colors[needed].x);
console.log(colors[needed]['x']);
还是我理解错了?
你在找字典之类的东西吗?!?
var colorArray = {};
colorArray["red"] = {
x: 100,
y: 200
};
colorArray["blue"] = {
x: 222,
y: 200
};
alert(colorArray["red"].x);
var colors = {
red : { x : 42, y : 7 },
blue : { x : .., y : .. },
...
};
alert(colors.red.x);
或者,如果您还需要数组中的颜色
var colors = {
blue: { color:"blue", x: 100, y: 200 },
red: { color:"red", x: 50, y: 300 },
yellow: { color:"yellow", x: 30 y: 700 }
}
您也可以使用字符串“常量”:
var RED = "red";
var colors = {};
colors[RED] = { color: RED, x: 100, y: 200 };
...
var colors = [
{color: 'blue', x: 897, y: 98 },
{color: 'red', x: 25, y: 1334 },
{color: 'yellow', x: 50, y: 12 }
]
for(var i in colors) {
console.log(colors[i].color);
console.log(colors[i].x);
console.log(colors[i].y);
}
// To insert into colors
colors.push({color: 'pink', x: 150, y: 200});
或者如果你有这样的结构
var colors = [
['red', 837, 98],
['blue', 25, 144],
['yellow', 50, 12]
];
然后
for(var i in colors) {
console.log(colors[i][0]); // output: red, yellow ...
console.log(colors[i][1]); // output: 837, 25 ..
console.log(colors[i][2]); // output: 98, 144 ..
}
and to insert into colors for this structure
colors.push(['pink', 150, 200])
或者
var colors = {
blue: { x: 58, y: 100 },
red: { x: 43, y: 1334 },
yellow: {x: 254, y: 12 }
}
然后
for(var i in colors) {
console.log(colors[i].blue.x);
console.log(colors[i].blue.y);
// or
console.log(colors[i]['blue'].x);
// or like
console.log(colors[i]['blue']['x']);
}
// and to insert for this sturcture
colors.pink= {x: 150, y: 200};