我是JS
的初学者,我对最佳做法有疑问。我有一些函数调用相同的API
但在数据返回时对数据执行不同的操作。我知道对于重复代码,我们应该创建一个新函数,但是为了获取数据创建一个新函数是否有意义?
我必须至少重复4次,如下所示:
showAllBooks(user){
fetch(`url`)
.then(response => response.json())
.then(json => {
//show all books for user
});
});
showShortestBooks(user){
fetch('url')
.then(response => response.json())
.then(json => {
//map through data and show shortest books in user's library
});
});
}
答案 0 :(得分:0)
两件事: