HI,
I’m using fetch plugin to get JSON data which is updated each minute. I wonder how to refresh that info on table so user can see most recent data.
Is it possible?
HI,
I’m using fetch plugin to get JSON data which is updated each minute. I wonder how to refresh that info on table so user can see most recent data.
Is it possible?
I think you could adapt the technique shown in the following thread:
It was so useful, the part of js fetch code was the cherry on top:
var obj = "";
if(p1==1){
obj = await fetch('url');
} else {
obj = await fetch('url');
}
const json = await obj.json();
return json.___[__]["___"]["___"];
Thank you
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.