如何从OMDB API中拆分电影演员,然后映射结果?

时间:2018-06-06 01:08:28

标签: javascript reactjs

到目前为止,这是我的代码:https://github.com/justgoof9/IMDB/blob/master/src/App.js

这是API的结果:enter image description here

我需要帮助分割API的一部分,如标题,演员,海报等,然后映射它们。

1 个答案:

答案 0 :(得分:0)

如果你的问题只是分裂部分,我想你可以使用String.prototype.split方法然后映射结果。



data = {
  'Actors': 'Alice A., Bob B., John J.'
}
let actors = data['Actors']
  .split(',') // split the string
  .map(s => s.trim()) // remove spaces

console.log(actors)