弃用
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the 兼容性表格 at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

unregister() method was used to ask the system to unregister and delete the specified endpoint. In the updated API, a subscription is can be unregistered via the PushSubscription.unsubscribe() 方法。

句法

var request = navigator.push.unregister(pushEndpoint);
					

特性

pushEndpoint

A pushEndpoint to be unregistered.

返回

A DOMRequest object to handle the success or failure of the method call.

If the method call is successful, the request's result 将是 PushRegistration object representing the endpoint that has been unregistered.

PushRegistration

Those objects are anonymous JavaScript objects with the following properties:

pushEndpoint

A string representing the URL of the unregistered endpoint.

version
未定义 unregister.onsuccess 被调用。

范例

var req = navigator.push.unregister(pushEndpoint);
req.onsuccess = function(e) {
  var endpoint = req.result;
  debug("Unregistered endpoint: " + endpoint );
}
req.onerror = function(e) {
  debug("Error unregistering the endpoint: " + JSON.stringify(e));
}
					

规范

规范 状态 注释
Push API 工作草案 定义 PushManager 接口。

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
unregister Chrome 42 Edge 16 Disabled
16 Disabled
Disabled From version 16: this feature is behind the Enable service workers preference.
17
Firefox 44
44
Extended Support Releases (ESR) before Firefox 78 ESR do not support service workers and the Push API.
IE No Opera 29 Safari No WebView Android No Chrome Android 42 Firefox Android 48
48
Push enabled by default.
Opera Android 29 Safari iOS No Samsung Internet Android 4.0

图例

完整支持

完整支持

不支持

不支持

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

见实现注意事项。

用户必须明确启用此特征。

用户必须明确启用此特征。

另请参阅

元数据

  • 最后修改: