有人可以告诉我如何使用Service Worker从php文件中获取数据吗? 例如,我想使用服务工作者从http://example.com/get-data.php读取数据
答案 0 :(得分:0)
fetch("https://example.com/get-data.php")
.then(function(response) {
return response.json();
})
.then(function(myJson) {
pn = JSON.stringify(myJson);
console.log(pn);
});