-1
我正在從js庫開始工作,基本上從其他api獲取json,並將其返回。那麼,即時通訊從Java世界,我做這樣的事情。製作JavaScript庫的最佳做法
- mylib.js
class ClientFetcher {
getClientesWithProducts(clientId) {
return fetch('api.site.com/clients/'+clientId)
.then(....doSomething);
}
getClientsWithFavorites() {...}
}
class ProductFetcher {
getActiveProducts() {
return fetch('api.site.com/products')
.then(...do somethind);
}
}
是這種做法在世界JS使用? 構建代碼有一些方法或模式? js社區通常會採用哪種方式?
你可以舉一些我的學習的例子。我的客戶提到了反應,但我沒有找到具體的東西。 – ulima69
@ ulima69 for react也許你可以嘗試按照這裏的答案解釋:https://stackoverflow.com/a/38743378/6638533 – samAlvin