1

我已经以这样一种方式声明了 Javascript 数组,然后我可以通过一个键访问它们,但那是很久以前的事了,我已经忘记了我是如何做到的。

基本上,我有两个要存储的字段,一个唯一键和它的值。我知道有办法做到这一点..像:

var jsArray = new {key: 'test test', value: 'value value'},
              new {key: 'test 2', value: 'value 2'};

并访问如下:

value = jsArray[key]

有人可以提醒我吗?

4

4 回答 4

7

您可以通过不同的方式进行操作:

var a = {'a':0, 'b':1, 'c':2};

var b = new Array();
b['a'] = 0;
b['b'] = 1;
b['c'] = 2;

var c = new Object();
c.a = 0;
c.b = 1;
c.c = 2;
于 2008-10-13T21:22:52.853 回答
2
var myFancyDictionary = {
  key: 'value',
  anotherKey: 'anotherValue',
  youGet: 'the idea'
}
于 2008-10-13T21:25:11.477 回答
2

如果您已经在使用 Prototype,请尝试使用它的 Hash。如果使用 jQuery,请尝试使用 Map。

于 2008-10-13T21:27:37.790 回答
-2

这是一个提供简单字典的 JavaScript 类。

if( typeof( rp ) == "undefined" ) rp = {};

rp.clientState = new function()
{
    this.items = new Object();
    this.length = 0;

    this.set = function( key, value )
    {
        if ( ! this.keyExists( key ) )
        {
            this.length++;
        }
        this.items[ key ] = value;    
    }

    this.get = function( key )
    {
        if ( this.keyExists( key ) )
        {
            return this.items[ key ];
        } 
    }

    this.keyExists = function( key )
    {
        return typeof( this.items[ key ] ) != "undefined"; 
    }

    this.remove = function( key )
    {
        if ( this.keyExists( key ) )
        {
            delete this.items[ key ];
            this.length--;   
            return true;
        }
        return false;
    }

    this.removeAll = function()
    {
        this.items = null;
        this.items = new Object();
        this.length = 0;
    }
}

示例使用:

// Add a value pair.
rp.clientState.set( key, value );

// Fetch a value.
var x = rp.clientState.Get( key );

// Check to see if a key exists.
if ( rp.clientState.keyExists( key ) 
{
    // Do something.
}

// Remove a key.
rp.clientState.remove( key );

// Remove all keys.
rp.clientState.removeAll();
于 2008-10-13T21:34:16.887 回答