XMLHttpRequest within service worker(Service Worker 中的 XMLHttpRequest)
问题描述
我正在尝试在 chrome 上创建一个推送通知系统.我有一个从 mysql 获取数据并回显 JSON 的 php,现在我想调用一个函数 getJsonCode(),当推送通知到达并读取 JSON 数据时它会被激活.
I'm trying to create a push notification system on chrome. I have a php that fetches data from mysql and echoes a JSON, now I'd like to call a function getJsonCode() that it's activated when a push notification arrives and reads the JSON data.
在我的 service worker 中,我创建了标准函数.问题是,当我使用 XMLHttpRequest 创建 getJsonCode 时,它告诉我它没有定义
Within my service worker I've created the standards functions. The problem is that when I create getJsonCode with a XMLHttpRequest it tells me it's not defined
self.addEventListener('install', function(event) {
self.skipWaiting();
console.log('Installed', event);
});
self.addEventListener('activate', function(event) {
console.log('Activated', event);
});
self.addEventListener('push', function(event) {
console.log('Push message', event);
getJsonCode();
);
})
getJsonCode() {
codeRequest= new XMLHttpRequest();
codeRequest.open('get', 'myfileWithJson.php', true);
codeRequest.send();
dataJSON = codeRequest.responseText;
console.log('rispostaJSON');
}
是否可以在 service worker 中调用这样的外部文件,或者是否存在某种限制?因为我不明白为什么这不起作用
Is it possible to call an external file like this within a service worker or are there some kind of limitations? Because I don't get why this isn't working
推荐答案
代替 XMLHttpRequest
,您可以使用新的 Fetch API.XMLHttpRequest
已被弃用,在 Service Worker 范围内不可用.
Instead of XMLHttpRequest
, you can use the new Fetch API. XMLHttpRequest
has been deprecated and is not available in the service worker scope.
在这个 ServiceWorker Cookbook recipe 中有一个示例,说明您想要实现的目标.
There's an example of exactly what you want to achieve in this ServiceWorker Cookbook recipe.
这篇关于Service Worker 中的 XMLHttpRequest的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Service Worker 中的 XMLHttpRequest
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01