nuxt.js - How to cache axios call at server side for all clients
问题 I am using a vue + nuxt.js application, I like to know if it is possible to cache an axios webservice call for all clients. I have to get some currency reference data and this makes not much sense that every client has to call this data. Can someone provide me some hints or even an example? Thx. 回答1: Here is working solution with latest Nuxt 2.11, using locally defined module. First add a local module to nuxt.config.js modules: [ "@/modules/axCache", ... ] Then // modules/axCache.js import