1. 程式人生 > >angular的快取機制

angular的快取機制

快取資料,不僅能使資料得到儲存,而且使專案能進行客觀的效能優化。

$http的快取

$http({
     method: 'GET',
     url: 'api/user.json',
     cache: true
})

快取能夠服務的請求越多,整體系統效能就能提升越多。

自定義請求

$http({
     method: 'GET',
     url: 'api/user.json',
     cache: myCache
})