205

到目前为止,我发现的所有文档都是更新已经创建的密钥:

 arr['key'] = val;

我有一个这样的字符串:" name = oscar "

我想结束这样的事情:

{ name: 'whatever' }

也就是说,拆分字符串并获取第一个元素,然后将其放入字典中。

代码

var text = ' name = oscar '
var dict = new Array();
var keyValuePair = text.split(' = ');
dict[ keyValuePair[0] ] = 'whatever';
alert( dict ); // Prints nothing.
4

9 回答 9

491

不知何故,所有示例虽然运行良好,但都过于复杂:

  • 他们使用new Array(),这对于简单的关联数组(AKA 字典)来说是一种过度杀伤(和开销)。
  • 更好的使用new Object(). 它工作正常,但为什么所有这些额外的输入?

这个问题被标记为“初学者”,所以让我们让它变得简单。

在 JavaScript 中使用字典的超简单方法或“为什么 JavaScript 没有特殊的字典对象?”:

// Create an empty associative array (in JavaScript it is called ... Object)
var dict = {};   // Huh? {} is a shortcut for "new Object()"

// Add a key named fred with value 42
dict.fred = 42;  // We can do that because "fred" is a constant
                 // and conforms to id rules

// Add a key named 2bob2 with value "twins!"
dict["2bob2"] = "twins!";  // We use the subscript notation because
                           // the key is arbitrary (not id)

// Add an arbitrary dynamic key with a dynamic value
var key = ..., // Insanely complex calculations for the key
    val = ...; // Insanely complex calculations for the value
dict[key] = val;

// Read value of "fred"
val = dict.fred;

// Read value of 2bob2
val = dict["2bob2"];

// Read value of our cool secret key
val = dict[key];

现在让我们更改值:

// Change the value of fred
dict.fred = "astra";
// The assignment creates and/or replaces key-value pairs

// Change the value of 2bob2
dict["2bob2"] = [1, 2, 3];  // Any legal value can be used

// Change value of our secret key
dict[key] = undefined;
// Contrary to popular beliefs, assigning "undefined" does not remove the key

// Go over all keys and values in our dictionary
for (key in dict) {
  // A for-in loop goes over all properties, including inherited properties
  // Let's use only our own properties
  if (dict.hasOwnProperty(key)) {
    console.log("key = " + key + ", value = " + dict[key]);
  }
}

删除值也很容易:

// Let's delete fred
delete dict.fred;
// fred is removed, but the rest is still intact

// Let's delete 2bob2
delete dict["2bob2"];

// Let's delete our secret key
delete dict[key];

// Now dict is empty

// Let's replace it, recreating all original data
dict = {
  fred:    42,
  "2bob2": "twins!"
  // We can't add the original secret key because it was dynamic, but
  // we can only add static keys
  // ...
  // oh well
  temp1:   val
};
// Let's rename temp1 into our secret key:
if (key != "temp1") {
  dict[key] = dict.temp1; // Copy the value
  delete dict.temp1;      // Kill the old key
} else {
  // Do nothing; we are good ;-)
}
于 2008-12-09T03:52:31.793 回答
148

使用第一个示例。如果密钥不存在,它将被添加。

var a = new Array();
a['name'] = 'oscar';
alert(a['name']);

会弹出一个包含'oscar'的消息框。

尝试:

var text = 'name = oscar'
var dict = new Array()
var keyValuePair = text.replace(/ /g,'').split('=');
dict[ keyValuePair[0] ] = keyValuePair[1];
alert( dict[keyValuePair[0]] );
于 2008-12-09T01:19:02.807 回答
29

JavaScript没有关联数组。它有对象

以下代码行都做了完全相同的事情——将对象上的“名称”字段设置为“猎户座”。

var f = new Object(); f.name = 'orion';
var f = new Object(); f['name'] = 'orion';
var f = new Array(); f.name = 'orion';
var f = new Array(); f['name'] = 'orion';
var f = new XMLHttpRequest(); f['name'] = 'orion';

看起来您有一个关联数组,因为 anArray也是一个Object- 但是您实际上根本没有将东西添加到数组中;您正在对象上设置字段。

现在已经清除了,这是您示例的有效解决方案:

var text = '{ name = oscar }'
var dict = new Object();

// Remove {} and spaces
var cleaned = text.replace(/[{} ]/g, '');

// Split into key and value
var kvp = cleaned.split('=');

// Put in the object
dict[ kvp[0] ] = kvp[1];
alert( dict.name ); // Prints oscar.
于 2008-12-09T01:47:52.857 回答
9

作为对 MK_Dev 的响应,可以进行迭代,但不能连续迭代(为此,显然需要一个数组)。

快速的 Google 搜索会在 JavaScript 中找到哈希表

循环哈希值的示例代码(来自上述链接):

var myArray = new Array();
myArray['one'] = 1;
myArray['two'] = 2;
myArray['three'] = 3;

// Show the values stored
for (var i in myArray) {
    alert('key is: ' + i + ', value is: ' + myArray[i]);
}
于 2008-12-09T01:37:24.453 回答
5

原始代码(我添加了行号以便可以参考它们):

1  var text = ' name = oscar '
2  var dict = new Array();
3  var keyValuePair = text.split(' = ');
4  dict[ keyValuePair[0] ] = 'whatever';
5  alert( dict ); // Prints nothing.

差不多好了...

  • 第 1 行:你应该做一个trimon text 所以它是name = oscar.

  • 第 3 行:好的,只要你的等号周围总是有空格。最好不要trim在第 1 行。使用=和修剪每个 keyValuePair

  • 在 3 和 4 之前添加一行:

      key = keyValuePair[0];`
    
  • 第 4 行:现在变为:

      dict[key] = keyValuePair[1];
    
  • 第 5 行:更改为:

      alert( dict['name'] );  // It will print out 'oscar'
    

我想说这dict[keyValuePair[0]]不起作用。您需要设置一个字符串keyValuePair[0]并将其用作关联键。这是我让我的工作的唯一方法。设置完成后,您可以使用数字索引或键入引号来引用它。

于 2009-10-19T19:10:28.890 回答
4

所有现代浏览器都支持Map,它是一种键/值数据结构。使用 Map 比使用 Object 更好的原因有两个:

  • 一个对象有一个原型,所以地图中有默认键。
  • Object 的键是字符串,它们可以是 Map 的任何值。
  • 您可以轻松地获取地图的大小,而您必须跟踪对象的大小。

例子:

var myMap = new Map();

var keyObj = {},
    keyFunc = function () {},
    keyString = "a string";

myMap.set(keyString, "value associated with 'a string'");
myMap.set(keyObj, "value associated with keyObj");
myMap.set(keyFunc, "value associated with keyFunc");

myMap.size; // 3

myMap.get(keyString);    // "value associated with 'a string'"
myMap.get(keyObj);       // "value associated with keyObj"
myMap.get(keyFunc);      // "value associated with keyFunc"

如果您希望对未从其他对象引用的键进行垃圾回收,请考虑使用Wea​​kMap而不是 Map。

于 2015-05-07T02:42:13.280 回答
3

我认为如果你像这样创建它会更好:

var arr = [];

arr = {
   key1: 'value1',
   key2:'value2'
};

有关更多信息,请查看以下内容:

JavaScript 数据结构 - 关联数组

于 2015-06-02T19:31:05.323 回答
1
var myArray = new Array();
myArray['one'] = 1;
myArray['two'] = 2;
myArray['three'] = 3;

// Show the values stored
for (var i in myArray) {
    alert('key is: ' + i + ', value is: ' + myArray[i]);
}

这没关系,但它会遍历数组对象的每个属性。

如果你只想遍历属性 myArray.one, myArray.two... 你可以这样尝试:

myArray['one'] = 1;
myArray['two'] = 2;
myArray['three'] = 3;
myArray.push("one");
myArray.push("two");
myArray.push("three");
for(var i=0;i<maArray.length;i++){
    console.log(myArray[myArray[i]])
}

现在您可以通过 myArray["one"] 访问这两个属性,并且只遍历这些属性。

于 2012-03-22T16:14:32.567 回答
1
var obj = {};

for (i = 0; i < data.length; i++) {
    if(i%2==0) {
        var left = data[i].substring(data[i].indexOf('.') + 1);
        var right = data[i + 1].substring(data[i + 1].indexOf('.') + 1);

        obj[left] = right;
        count++;
    }
}

console.log("obj");
console.log(obj);

// Show the values stored
for (var i in obj) {
    console.log('key is: ' + i + ', value is: ' + obj[i]);
}


}
};
}
于 2015-09-08T06:32:50.210 回答