如何使用Service Worker从php文件中获取数据?

时间:2018-12-31 00:39:34

标签: json service get service-worker worker

有人可以告诉我如何使用Service Worker从php文件中获取数据吗? 例如,我想使用服务工作者从http://example.com/get-data.php读取数据

1 个答案:

答案 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);
});