我有一个使用Firebase的JavaScript Web应用程序。我还通过云功能准备了很多内容。我的逻辑是使页面加载更快,因为片段可以异步显示。现在,我认为与服务人员一起过渡到PWA以进行脱机使用将是很好的。我将云函数用作https的可调用函数。
例如:
var app = firebase.initializeApp(config);
var functions = app.functions();
var dataReq = functions.httpsCallable('getData');
dataReq().then(function(res) {
// Consume the result.
}).catch(function(err) {
// Do something.
});
是否有办法或自动将Firebase本地缓存云功能响应?