web-dev-qa-db-ja.com

Typescriptで辞書を宣言して初期化する

次のコードを考えます

interface IPerson {
   firstName: string;
   lastName: string;
}

var persons: { [id: string]: IPerson; } = {
   "p1": { firstName: "F1", lastName: "L1" },
   "p2": { firstName: "F2" }
};

初期化が拒否されないのはなぜですか?結局、2番目のオブジェクトには "lastName"プロパティがありません。

187
mgs

編集:これはそれ以降、最新のTSバージョンでは修正されています。 OPの投稿に対する@ Simon_Weaverのコメントの引用:

注:これは修正されました(正確なTSバージョンは不明)。ご想像のとおり、VSでこれらのエラーが発生します。Index signatures are incompatible. Type '{ firstName: string; }' is not assignable to type 'IPerson'. Property 'lastName' is missing in type '{ firstName: string; }'.


例を宣言と初期化に分割することで、型付き辞書を使用できます。

var persons: { [id: string] : IPerson; } = {};
persons["p1"] = { firstName: "F1", lastName: "L1" };
persons["p2"] = { firstName: "F2" }; // will result in an error
219
thomaux

私はthomauxに同意します、初期化タイプチェックエラーはTypeScriptのバグです。しかし、それでも、正しい型チェックを使用して、1つのステートメントでDictionaryを宣言して初期化する方法を見つけたかったのです。この実装はもっと長いですが、containsKey(key: string)remove(key: string)メソッドのような追加機能を追加します。私は、ジェネリックが0.9リリースで利用可能になればこれが単純化されるかもしれないと思います。

まず、基本のDictionaryクラスとInterfaceを宣言します。クラスはそれらを実装できないため、インターフェイスはインデクサーに必要です。

interface IDictionary {
    add(key: string, value: any): void;
    remove(key: string): void;
    containsKey(key: string): bool;
    keys(): string[];
    values(): any[];
}

class Dictionary {

    _keys: string[] = new string[];
    _values: any[] = new any[];

    constructor(init: { key: string; value: any; }[]) {

        for (var x = 0; x < init.length; x++) {
            this[init[x].key] = init[x].value;
            this._keys.Push(init[x].key);
            this._values.Push(init[x].value);
        }
    }

    add(key: string, value: any) {
        this[key] = value;
        this._keys.Push(key);
        this._values.Push(value);
    }

    remove(key: string) {
        var index = this._keys.indexOf(key, 0);
        this._keys.splice(index, 1);
        this._values.splice(index, 1);

        delete this[key];
    }

    keys(): string[] {
        return this._keys;
    }

    values(): any[] {
        return this._values;
    }

    containsKey(key: string) {
        if (typeof this[key] === "undefined") {
            return false;
        }

        return true;
    }

    toLookup(): IDictionary {
        return this;
    }
}

今度はPerson固有の型とDictionary/Dictionaryインターフェースを宣言します。 PersonDictionaryの注で、正しい型を返すためにvalues()toLookup()をオーバーライドする方法について説明します。

interface IPerson {
    firstName: string;
    lastName: string;
}

interface IPersonDictionary extends IDictionary {
    [index: string]: IPerson;
    values(): IPerson[];
}

class PersonDictionary extends Dictionary {
    constructor(init: { key: string; value: IPerson; }[]) {
        super(init);
    }

    values(): IPerson[]{
        return this._values;
    }

    toLookup(): IPersonDictionary {
        return this;
    }
}

そして、これは簡単な初期化と使用例です:

var persons = new PersonDictionary([
    { key: "p1", value: { firstName: "F1", lastName: "L2" } },
    { key: "p2", value: { firstName: "F2", lastName: "L2" } },
    { key: "p3", value: { firstName: "F3", lastName: "L3" } }
]).toLookup();


alert(persons["p1"].firstName + " " + persons["p1"].lastName);
// alert: F1 L2

persons.remove("p2");

if (!persons.containsKey("p2")) {
    alert("Key no longer exists");
    // alert: Key no longer exists
}

alert(persons.keys().join(", "));
// alert: p1, p3
58
dmck

TypeScriptで辞書オブジェクトを使うには、以下のようにインターフェースを使うことができます。

interface Dictionary<T> {
    [Key: string]: T;
}

そして、これをあなたのクラスプロパティの型に使います。

export class SearchParameters {
    SearchFor: Dictionary<string> = {};
}

このクラスを使用して初期化します。

getUsers(): Observable<any> {
        var searchParams = new SearchParameters();
        searchParams.SearchFor['userId'] = '1';
        searchParams.SearchFor['userName'] = 'xyz';

        return this.http.post(searchParams, 'users/search')
            .map(res => {
                return res;
            })
            .catch(this.handleError.bind(this));
    }
49
Amol Bhor

プロパティを無視したい場合は、疑問符を追加してオプションとしてマークします。

interface IPerson {
    firstName: string;
    lastName?: string;
}
3
user3230210

これは@dmckからヒントを得た、より一般的なDictionaryの実装です。

    interface IDictionary<T> {
      add(key: string, value: T): void;
      remove(key: string): void;
      containsKey(key: string): boolean;
      keys(): string[];
      values(): T[];
    }

    class Dictionary<T> implements IDictionary<T> {

      _keys: string[] = [];
      _values: T[] = [];

      constructor(init?: { key: string; value: T; }[]) {
        if (init) {
          for (var x = 0; x < init.length; x++) {
            this[init[x].key] = init[x].value;
            this._keys.Push(init[x].key);
            this._values.Push(init[x].value);
          }
        }
      }

      add(key: string, value: T) {
        this[key] = value;
        this._keys.Push(key);
        this._values.Push(value);
      }

      remove(key: string) {
        var index = this._keys.indexOf(key, 0);
        this._keys.splice(index, 1);
        this._values.splice(index, 1);

        delete this[key];
      }

      keys(): string[] {
        return this._keys;
      }

      values(): T[] {
        return this._values;
      }

      containsKey(key: string) {
        if (typeof this[key] === "undefined") {
          return false;
        }

        return true;
      }

      toLookup(): IDictionary<T> {
        return this;
      }
    }
1
mbcom

今、TypeScriptで強く型付けされた問い合わせ可能なコレクションを提供するライブラリがあります。

コレクションは以下のとおりです。

  • リスト
  • 辞書

このライブラリはts-generic-collectionsと呼ばれます。

GitHubのソースコード:

https://github.com/VeritasSoftware/ts-generic-collections

このライブラリを使用すると、コレクション(List<T>など)を作成し、以下に示すようにそれらをクエリできます。

    let owners = new List<Owner>();

    let owner = new Owner();
    owner.id = 1;
    owner.name = "John Doe";
    owners.add(owner);

    owner = new Owner();
    owner.id = 2;
    owner.name = "Jane Doe";
    owners.add(owner);    

    let pets = new List<Pet>();

    let pet = new Pet();
    pet.ownerId = 2;
    pet.name = "Sam";
    pet.sex = Sex.M;

    pets.add(pet);

    pet = new Pet();
    pet.ownerId = 1;
    pet.name = "Jenny";
    pet.sex = Sex.F;

    pets.add(pet);

    //query to get owners by the sex/gender of their pets
    let ownersByPetSex = owners.join(pets, owner => owner.id, pet => pet.ownerId, (x, y) => new OwnerPet(x,y))
                               .groupBy(x => [x.pet.sex])
                               .select(x =>  new OwnersByPetSex(x.groups[0], x.list.select(x => x.owner)));

    expect(ownersByPetSex.toArray().length === 2).toBeTruthy();

    expect(ownersByPetSex.toArray()[0].sex == Sex.F).toBeTruthy();
    expect(ownersByPetSex.toArray()[0].owners.length === 1).toBeTruthy();
    expect(ownersByPetSex.toArray()[0].owners.toArray()[0].name == "John Doe").toBeTruthy();

    expect(ownersByPetSex.toArray()[1].sex == Sex.M).toBeTruthy();
    expect(ownersByPetSex.toArray()[1].owners.length == 1).toBeTruthy();
    expect(ownersByPetSex.toArray()[1].owners.toArray()[0].name == "Jane Doe").toBeTruthy();
0
John