I saw that fetch will be used instead of request for latest version of framework7 and I wonder if fetch will include retries and retryDelay properties as well like in this npm package, for my case retries and retryDelay are useful because it helps when having network issues when doing a request!
This is the npm package I found useful!
I hope it can be considered in the latest framework7 updates with fetch!
thanks
maybe i’ve said it wrong.
so i’ll try again:
on V8 there will be no app.request at all.
if you want to make a request then you will have to do it by yourself.
so feel free to add this pkg to your app
f7 itself will use fetch internally only in:
load-module.js => (src/core/components/app/load-module.js)
form.js => (src/core/components/form/form.js)
router-class.js => (src/core/modules/router/router-class.js)
or you can do something like this (for back-comptability)
i actually do it a little bit different (but that’s another story)
it just to give you some idea.