弃用
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.
registrations
method is used to ask the system about existing push endpoint registrations.
var request = navigator.push.registrations();
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 an array of
PushRegistration
对象。
Those objects are anonymous JavaScript objects with the following properties:
pushEndpoint
A string representing the URL of the endpoint.
version
The current version that the push endpoint is at.
var req = navigator.push.registrations();
req.onsuccess = function(e) {
if (req.result.length > 0) {
for (var i = 0, l = req.result.length; i < l; i++) {
console.log("Existing registration", req.result[i].pushEndpoint, req.result[i].version);
}
// Reuse existing endpoints.
} else {
// Register for a new endpoint.
var register = navigator.push.register();
register.onsuccess = function(e) {
console.log("Registered new endpoint", register.result);
}
}
}
| 规范 | 状态 | 注释 |
|---|---|---|
| Push API | 工作草案 |
定义
PushManager
接口。
|
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
registrations
|
Chrome 42 |
Edge
16
Disabled
|
Firefox
44
|
IE No | Opera 29 | Safari No | WebView Android No | Chrome Android 42 |
Firefox Android
48
|
Opera Android 29 | Safari iOS No | Samsung Internet Android 4.0 |
完整支持
不支持
实验。期望将来行为有所改变。
见实现注意事项。
用户必须明确启用此特征。
PushManager
getSubscription()
hasPermission()
permissionState()
register()
registrations()
subscribe()
unregister()