2015-05-15 19 views
6

Come dichiarare un dizionario da usare con _.map in lodash?lodash typescript: come dichiarare un dizionario da usare con _.map?

Ecco il programma TypeScript di esempio.

<reference path="../scripts/typings/lodash/lodash.d.ts" /> 
interface IQuestionAndOptions { 
    text: string; 
    options: { [key: number]: string }; 
} 

function sample() { 
    var question: IQuestionAndOptions = { text: "Are you happy?", options: {} }; 
    question['1'] = "Yes"; 
    question['2'] = "No"; 

    var values = _.map(question.options, function (v: string, k: number) { 
    return { text: v, value: k }; }); 
} 

Non è soddisfatto della dichiarazione di question.options e restituisce il seguente errore.

Argomento di tipo '{[chiave: numero]: stringa; }' Non è assegnabile al parametro di tipo 'List' al comando _.map

risposta

0

Il problema era con il lodash.d.ts e l'aggiornamento risolveva il problema.

NuGet lodash.TypeScript.DefinitelyTyped version = "0.3.8"

utilizza

map<T, TResult>(
    collection: List<T>, 
    pluckValue: string): TResult[]; 

definizione e lavora.

0

Procedimento map è definita come la seguente in DefinitelyTyped:

map<T, TResult>(
     collection: Array<T>, 
     callback: ListIterator<T, TResult>, 
     thisArg?: any): TResult[]; 

Si richiede l'argomento collection essere un array, che è più specifico di { [key: number]: string }. Devi dichiarare il campo options come una matrice affinché funzioni.