弃用
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.

register method is used to ask the system to request a new endpoint for notifications. This method has been superceded by PushManager.subscribe() .

句法

var request = navigator.push.register();
					

返回

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

If the method call is successful, the request's result will be a string, which is the endpoint URL.

注意: if you do not need the URL any more, please use Pushmanager.unregister() to clean up after yourself.

范例

var req = navigator.push.register();
req.onsuccess = function(e) {
  var endpoint = req.result;
  debug("New endpoint: " + endpoint );
}
req.onerror = function(e) {
  debug("Error getting a new 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
register 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

图例

完整支持

完整支持

不支持

不支持

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

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

见实现注意事项。

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

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

另请参阅

元数据

  • 最后修改: