Я очищаю веб-сайт от данных и, чтобы получить окончательный результат, когда я помещаю объект в список javascript, он заменяет все ранее существующие значения последним отправленным значением.
когда я утешил его прямо перед нажатием, я получил правильный ответ.
function getCharactersfor(name,filter='anime'){
return rp("https://www.anime-planet.com/"+filter+"/"+change(name)+"/characters").then((data) => {
const $=cheerio.load(data)
result=[]
a=$("tr").each(function(){
character={name:undefined,image:undefined,voiceActors:{English:[],Japanese:[]}}
character.name=$(this).find(".name").text()
character.image="https://www.anime-planet.com"+$(this).find('.tableAvatar').find('img').attr('src')
if(filter=='anime'){
res={name:'',image:undefined,otherworks:[]}
m=$(this).find(".flagUS").children().each(function(i){
res.name=$(this).html()
a=cheerio.load($(this).attr('title'))
res.image="https://www.anime-planet.com"+a('img').attr('src')
character.voiceActors.English.push(res)
})
m=$(this).find(".flagJP").children().each(function(){
res.name=$(this).html()
a=cheerio.load($(this).attr('title'))
res.image="https://www.anime-planet.com"+a('img').attr('src')
character.voiceActors.Japanese.push(res)
})
}else{
character.voiceActors=undefined
}
result.push(character)
})
return(result)
}).catch(err=> console.log(err))
}
getCharactersfor('black clover').then((result)=>{
console.log(result[0].voiceActors)
})
результат получается
{ English:
[ { name: 'Gakuto KAJIWARA',
image: 'https://www.anime-planet.com/images/people/thumbs/gakuto-kajiwara-23630.jpg?t=1509881610' } ],
Japanese:
[ { name: 'Gakuto KAJIWARA',
image: 'https://www.anime-planet.com/images/people/thumbs/gakuto-kajiwara-23630.jpg?t=1509881610' },
{ name: 'Gakuto KAJIWARA',
image: 'https://www.anime-planet.com/images/people/thumbs/gakuto-kajiwara-23630.jpg?t=1509881610' } ] }
все они должны быть разными