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