标签: jquery arrays dictionary explorer
我有一个数组“类型”,其中包含ID和电影类型的名称,还有一个数组“类型”,仅包含ID。 我正在使用.map()从第一个数组中获取名称,它在chrome和firefox中有效,但在Internet Explorer中不起作用。
这是我的代码:
genre = genre.map(id => genres.find(x => x.id == id)).map(x => x.name);
关于如何实现这项工作的任何想法?