到目前为止,这是我的代码:https://github.com/justgoof9/IMDB/blob/master/src/App.js
我需要帮助分割API的一部分,如标题,演员,海报等,然后映射它们。
答案 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)